I want to create a variable of:
$HTTP_POST_FILES['userfile']['name']
I am creating a image upload page. I can display the file name using
echo "<br>File Name: ".$HTTP_POST_FILES['userfile']['name']."<br>\n";
But I want to store the name in a variable.
any help appreciated.
Thanks,
Vp.