hey again.
I am now learning how to handle file uploads , i created the
php code :
http://therainbowpride.com/myphptests/uploads/upload_file.php
THIS IS THE CODE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Upload a file</title>
</head>
<body>
<?php // Script 11.4 - upload_file.php
// This script displays and handles an HTML form.
// This script takes a file upload and stores it on the
server.
// Address error handling.
ini_set ('display_errors', 1);
error_reporting (E_ALL & ~E_NOTICE);
if (isset ($_POST['submit'])) { // Handle form.
// Try to move the uploaded file.
if (move_uploaded_file ($_FILES['thefile']['tmp_name'],
"../uploads/{$_FILES['thefile']['name']}")) {
print '<p>Your file could not be uploaded.</p>';
} else { //Problem!
print '<p>Your file could not be uploaded because:
<b>';
// Print a message based upon the error.
switch ($_FILES['thefile']['error']) {
case 1:
print 'The file exceeds the upload_max_filesize setting in
php.ini';
break;
case 2:
print 'The file exceeds the MAX_FILE_SIZE setting in the HTML
form';
break;
case 3:
print 'The file was only partially uploaded';
break;
case 4:
print 'No file was uploaded';
break;
}
print '</b>.</p>';
}
} // End of SUBMIT IF.
// Leave PHP and display the form.
?>
<form action="upload_file.php"
enctype="multipart/form-data" method="post">
<p>Upload a file using this form: <br /><br
/>
<input type="hidden" name="MAX_FILE_SIZE" value="300000"
/>
<input type="file" name="thefile" /><br /><br
/>
<input type="submit" name="submit" value="Upload This
File" />
</p>
</form>
</body>
</html>
I was getting error : The file exceeds the MAX_FILE_SIZE. so
i went and changed it.
But now all i get when i browse and submit a file is this
error :
Your file could not be uploaded
I created the "uploads" folder in my web sever and uploaded
the "upload_file.php to it.
What can i do to fix this. Even tho it says could not be
uploaded, it still shows on the folder "uploads"
thanks guys.