Hi, I'm still having trouble getting my upload to move to my upload file. The only thing I changed in the html code was the MAX_FILE_SIZE
<form action="feedback.php" method="post" enctype="multipart/form-data">
<input type="hidden" name"MAX_FILE_SIZE" value="30000" />
<td><input name="fileup" type="file" />
Here's what I now have to upload and move the uploaded file:
$up_load_dir = 'http://www.learningcommunity202.org/pnhs/English/Upload/';
$file='fileup';
$uploaded_file = $up_load_dir . basename($_FILES['fileup']['name']);
move_uploaded_file($file, $up_load_dir);
I know it's something really dumb...also, is the last line redundent? Thank you