Hi folks,
Sorry to post what is seemingly a very well covered topic, but I am stumpped.
I am getting..
"Warning: Unable to open 'C:\Documents and Settings\TimHi\Desktop\tabs.txt' for reading: No such file or directory in /home/thines/public_html/inline6/scripts/upload_files.php on line 38
failed
Warning: unlink() failed (No such file or directory) in /home/thines/public_html/inline6/scripts/upload_files.php on line 44"
From this code.....
The form:
<form name=\"upload_files\" method=\"post\" action=\"$i6global[httproot]/scripts/upload_files.php\">
<input type=\"hidden\" name=\"i6f[pid]\" value=\"$pid\">
Upload this file: <input type=file name=\"userfile\"><br>
<input type=\"submit\" name=\"Submit\" value = \"Upload\"></td>
The Script:
$tempfile = stripslashes($userfile);
if (copy($tempfile, "../files/17")){
echo "File Upload Success";
}else{
echo "failed";
}
unlink($userfile);
Thanks for your help!
-Tim