Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Web Development
You last visited: Today at 05:10

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



File upload, Why errors??

Discussion on File upload, Why errors?? within the Web Development forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2012
Posts: 372
Received Thanks: 21
File upload, Why errors??

Hi, i used the code from w3schools for file upload... but i get errors if i try do have all the code in 1 file...

Code:
<html>

<head>
<title>Files</title>

</head>
<body>

<form action="" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file"  name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>


<?php

if ($_FILES["file"]["error"] > 0)
  {
  echo "Error: " . $_FILES["file"]["error"] . "<br>";
  }
else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br>";
  echo "Type: " . $_FILES["file"]["type"] . "<br>";
  echo "Size: " . ($_FILES["file"]["size"] / 512) . " kB<br>";
  echo "Stored in: " . $_FILES["file"]["tmp_name"];
  }

?>


</body>
</html>
Hikarim is offline  
Old 01/26/2013, 22:29   #2
 
Mikesch01's Avatar
 
elite*gold: 203
Join Date: Sep 2007
Posts: 732
Received Thanks: 190
Which error occurs? Please give is the complete error.
Mikesch01 is offline  
Old 01/26/2013, 22:32   #3
 
elite*gold: 0
Join Date: Apr 2012
Posts: 372
Received Thanks: 21
Notice: Undefined index: file in C:\xampp\htdocs\xampp\www\files.php on line 12

Notice: Undefined index: file in C:\xampp\htdocs\xampp\www\files.php on line 18
Upload:

Notice: Undefined index: file in C:\xampp\htdocs\xampp\www\files.php on line 19
Type:

Notice: Undefined index: file in C:\xampp\htdocs\xampp\www\files.php on line 20
Size: 0 kB

Notice: Undefined index: file in C:\xampp\htdocs\xampp\www\files.php on line 21
Stored in:

these are the errors, and, ye, they are not wanted ...
Hikarim is offline  
Old 01/26/2013, 22:40   #4
 
Mikesch01's Avatar
 
elite*gold: 203
Join Date: Sep 2007
Posts: 732
Received Thanks: 190
First at all, these aren't errors rather notices. I think this happens when you don't uploaded any file (like when you first want to try to upload a file). This can be simply repaired.

PHP Code:
<html>

<head>
<title>Files</title>

</head>
<body>

<form action="" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file"  name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>


<?php
if(isset($_FILES['file'])) {
if (
$_FILES["file"]["error"] > 0)
  {
  echo 
"Error: " $_FILES["file"]["error"] . "<br>";
  }
else
  {
  echo 
"Upload: " $_FILES["file"]["name"] . "<br>";
  echo 
"Type: " $_FILES["file"]["type"] . "<br>";
  echo 
"Size: " . ($_FILES["file"]["size"] / 512) . " kB<br>";
  echo 
"Stored in: " $_FILES["file"]["tmp_name"];
  }
}
?>


</body>
</html>
Mikesch01 is offline  
Old 01/26/2013, 22:41   #5
 
PseudoPsycho's Avatar
 
elite*gold: 1715
Join Date: Dec 2011
Posts: 672
Received Thanks: 207
Try this:
HTML Code:
<?php
$op=$_GET['op'];
if($op==='upload' && !empty($_FILES)){
if ($_FILES["file"]["error"] > 0)
  {
  echo "Error: " . $_FILES["file"]["error"] . "<br>";
  }
else
  {
  echo "Upload: " . $_FILES["file"]["name"] . "<br>";
  echo "Type: " . $_FILES["file"]["type"] . "<br>";
  echo "Size: " . ($_FILES["file"]["size"] / 512) . " kB<br>";
  echo "Stored in: " . $_FILES["file"]["tmp_name"];
  }
}
else {
<!Doctype html><html>
<head>
<title>Files</title>
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>?op=upload" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file"  name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
<?php }
PseudoPsycho is offline  
Reply


Similar Threads Similar Threads
could any one upload this file in other site plz
06/10/2011 - Rappelz - 3 Replies
Hi I can't dowload the file on this site.. any one upload it on other site MEGAUPLOAD - The leading online storage and file delivery service Thanx in advance =)
Db-Bot >>> Loop.txt File ( Please upload it for me )
05/30/2011 - SRO Private Server - 10 Replies
I need the loop file that makes the town loop in hotan/DW. Please upload it here, thx & have a nice day.
ml_0.13.12 setup is giving me file errors..
12/10/2010 - Dragonica - 1 Replies
I need help with my ml_0.13.12 setup it keeps giving me file errors and at the beginning there's a pop-up saying something and there's a yes or no answer.
[Upload File] Max is 2Gb..
03/09/2010 - EO PServer Hosting - 3 Replies
Take a look this if you all need it.. :rolleyes: From :Fileupload.Filetac From :DepositFiles From :LargeFilesAsap From :SizableSend From :EveryWherePrint From :FileFlyer Just For Helping...;);)



All times are GMT +1. The time now is 05:11.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.