php form upload error
Posted: Mon Sep 12, 2011 9:17 am
hi, i am trying to code a file uploader in php using IIS server this is the code of the form:
<html><body>
<form method="post" enctype="multipart/form-data" action="processform.php">
<input type="hidden" name="MAX_FILE_SIZE" value="200000">
<input type="file" name="thefile"><br/>
<input type="submit" value="Submit File....">
</form>
</body></html>
this is the code of processform.php
<?php
$upload_dir = "C:/Inetpub/wwwroot/cbt/upload/";
$upload_file = $upload_dir . basename($_FILES['thefile']['name']);
if(copy($_FILE['thefile']['tmp_name'],$upload_file)){
echo "File copy was Successful!";
}
else
{
echo "Oops... something went wrong...";
print_r($_FILES);
}
?>
now the problem is each time i try to click on the submit button after browsing any file it shows the message :
Oops... something went wrong...Array ( [thefile] => Array ( [name] => 1.jpeg [type] => image/jpeg [tmp_name] => C:\temps\php13.tmp [error] => 0 [size] => 59592 ) )
help me guys......
wats the problem with the code ?
<html><body>
<form method="post" enctype="multipart/form-data" action="processform.php">
<input type="hidden" name="MAX_FILE_SIZE" value="200000">
<input type="file" name="thefile"><br/>
<input type="submit" value="Submit File....">
</form>
</body></html>
this is the code of processform.php
<?php
$upload_dir = "C:/Inetpub/wwwroot/cbt/upload/";
$upload_file = $upload_dir . basename($_FILES['thefile']['name']);
if(copy($_FILE['thefile']['tmp_name'],$upload_file)){
echo "File copy was Successful!";
}
else
{
echo "Oops... something went wrong...";
print_r($_FILES);
}
?>
now the problem is each time i try to click on the submit button after browsing any file it shows the message :
Oops... something went wrong...Array ( [thefile] => Array ( [name] => 1.jpeg [type] => image/jpeg [tmp_name] => C:\temps\php13.tmp [error] => 0 [size] => 59592 ) )
help me guys......
wats the problem with the code ?