i use the file input on my form. I have notived that the file is automatically uploaded to a temporary section. I want to get the name of the file before PHP server assignedit that tmp name - how would i do this?
Well you can just get the file name by doing this:
$uploadedfile=$_FILES['sentfile']; print "The name is " . $uploadedfile['name'];
Is that what you need?!
Thankyou - that is exactly what i needed 😃