Jump to content

Uploading files to server


twilitegxa

Recommended Posts

I'm trying to upload two image files to my server on one form. I found a tutorial that is supposed to do this, but it's not working for some reason. I have the file upload form here:

 

 

(excerpt of just the code where the file uploads are)


<tr>
<td>Angle 1:</td>
<td><input name="ufile[]" type="file" id="ufile[]" /></td>
</tr>
<tr>
<td>Angle 2:</td>
<td><input name="ufile[]" type="file" id="ufile[]" /></td>
</tr>

 

 

And here is the code that is supposed to copy the files to my directory on my server as well as insert the record into the database:

 

 


//set where you want to store files
//in this example we keep file in folder upload 
//$HTTP_POST_FILES['ufile']['name']; = upload file name
//for example upload file name cartoon.gif . $path will be upload/cartoon.gif
$path1= "upload/".$HTTP_POST_FILES['ufile']['name'][0];
$path2= "upload/".$HTTP_POST_FILES['ufile']['name'][1];
//$path3= "upload/".$HTTP_POST_FILES['ufile']['name'][2];


//copy file to where you want to store file
copy($HTTP_POST_FILES['ufile']['tmp_name'][0], $path1);
copy($HTTP_POST_FILES['ufile']['tmp_name'][1], $path2);
//copy($HTTP_POST_FILES['ufile']['tmp_name'][2], $path3);
//$HTTP_POST_FILES['ufile']['name'] = file name
//$HTTP_POST_FILES['ufile']['size'] = file size
//$HTTP_POST_FILES['ufile']['type'] = type of file
echo "File Name :".$HTTP_POST_FILES['ufile']['name'][0]."<BR/>"; 
echo "File Size :".$HTTP_POST_FILES['ufile']['size'][0]."<BR/>"; 
echo "File Type :".$HTTP_POST_FILES['ufile']['type'][0]."<BR/>"; 
echo "<img src=\"$path1\" width=\"150\" height=\"150\">";
echo "<P>";


echo "File Name :".$HTTP_POST_FILES['ufile']['name'][1]."<BR/>"; 
echo "File Size :".$HTTP_POST_FILES['ufile']['size'][1]."<BR/>"; 
echo "File Type :".$HTTP_POST_FILES['ufile']['type'][1]."<BR/>"; 
echo "<img src=\"$path2\" width=\"150\" height=\"150\">";
echo "<P>";


//echo "File Name :".$HTTP_POST_FILES['ufile']['name'][2]."<BR/>"; 
//echo "File Size :".$HTTP_POST_FILES['ufile']['size'][2]."<BR/>"; 
//echo "File Type :".$HTTP_POST_FILES['ufile']['type'][2]."<BR/>"; 
//echo "<img src=\"$path3\" width=\"150\" height=\"150\">";


///////////////////////////////////////////////////////


// Use this code to display the error or success.


$filesize1=$HTTP_POST_FILES['ufile']['size'][0];
$filesize2=$HTTP_POST_FILES['ufile']['size'][1];
//$filesize3=$HTTP_POST_FILES['ufile']['size'][2];


if($filesize1 && $filesize2 != 0) 
{
echo "We have recieved your files";
}


else {
echo "ERROR.....";
}


//////////////////////////////////////////////


// What files that have a problem? (if found)


if($filesize1==0) {
echo "There're something error in your first file";
echo "<BR />";
}


if($filesize2==0) {
echo "There're something error in your second file";
echo "<BR />";
}


//if($filesize3==0) {
//echo "There're something error in your third file";
//echo "<BR />";
//}


//end new code here
     
      $query = "INSERT INTO gallery VALUES ('', '$cut', '$color', '$carats', '$clarity', '$size', '$metal', '$other', '$total', '$certificate', '$value', '$path1', '$name', '$desc', '$item_no', '$type', '$path2')";
$query_res = mysql_query($query) or die(mysql_error());

 

 

The insert statement is working perfectly, but I need to know what is causing my file uploads to not work. I was using a previous code but it only worked to upload one image, and I'd like to offer two image uploads on one form. Can anyone please help me out here? Why could this not be working?

Link to comment
Share on other sites

Okay, I don't know why, but before it wasn't working at all, but now all of a sudden the images are uploading the server, and I haven't changed anything. I am having another problem though, with displaying those images, but I will post another topic for that one. Not sure how this resolved itself though...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.