PHP Code:
$_FILES['uploadedfile']['name'] = $username . "_" . $_FILES['uploadedfile']['name']);
or
PHP Code:
$pic_name = $username . "_" . $pic_name;
Of course you'd need to swap out the variable $username with whatever variable you have for the members name. Another way to handle this would be to use a time stamp on the front of the filename. For accessing it later, probably the best thing to do would be to have the image name written to a db table and then use that to later call up the correct image.