In an Upload Form I'm using, has this line:
$newfilename = $SESSION['user_id'].$FILES["file"]["name"]; (and more)
In regard to that, I was instructed to "store the newfilename in a session variable"
(in another php file)
and use the session variable in this link, instead of newfilename,
<a href="upload/<?php echo $newfilename?>"><?php echo $newfilename?></a>
I'm not sure how to do that. Can you shed some light on this for me?
Any guidance will be appreciated..