Hey Dave ,
Could u get the Original file name that was Uploaded into the temp Directory..
i am trying the Following code for uploading,
if(!@copy($userfile,$userfile_name))
{
echo "File Not Uploaded ";
}
else
{
echo "File Uploaded ";
}
with the above code i am not sucessfull..
But i c that the File is temporarily uploaded in to the Temporary directed if i use the following code..
if(!@copy($userfile,$userfile.".Bak"))
{
echo "File Not Uploaded ";
}
else
{
echo "File Uploaded ";
}
The File is uploaded into the Temporary Directory with Some name..
How do i get the name of the Temporary file to Original name .
Hope to hear from you soon,
Sudeep Kumar