Jump to content

Multiple Upload Script Not Working


SupremeBeing

Recommended Posts

Hello Everyone,

I have been working on this add product script but cannot seem to get it to work when two files are uploaded.

All the data is uploaded to a database, including the two images filenames and then the two files are added to the server to different locations.

 

Here is the form:

<form action="addnewproduct.php" method="post" name="addproduct" id="addproduct" enctype="multipart/form-data">
    <input type="hidden" name="MAX_FILE_SIZE" value="10000000">
<table width="98%" border="0" cellspacing="0" cellpadding="5">
  <tr>
    <td width="28%" valign="middle" class="style1 style2"><div align="right" class="style5">Product Title </div></td>
    <td width="72%" class="style5"><input class="form" type="text" name="title" accesskey="1" tabindex="1" /></td>
    </tr>
  <tr>
    <td valign="middle" class="style1 style2"><div align="right" class="style5">Category</div></td>
    <td class="style5">
    <select class="form" name="cat" accesskey="2" tabindex="2">
    
      <option value="Boards">Boards</option>
      <option value="Accessories">Accessories</option>
      <option value="Clothing">Clothing</option>
      </select>
      </td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Description</div></td>
    <td class="style5"><textarea class="form" name="description" cols="50" rows="5" accesskey="3" tabindex="3"></textarea></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Price<br />
        <span class="d">Including </span></div></td>
    <td class="style5"><input class="form" type="text" name="price" accesskey="4" tabindex="4" /></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Paypal Link<br />
    <span class="d">Including</span></div></td>
    <td class="style5"><input class="form" type="text" name="paypal" accesskey="5" tabindex="5" /></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Thumbnail<br />
      <span class="d">Image should be 100 x 100 </span></div></td>
    <td class="style5">
  <input style="padding:2px; border:1px #999 solid; color:blue;" name="userfile[]" type="file" id="userfile[]"> </td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Image<br />
      <span class="d">Image should be 300 x 450 </span></div></td>
    <td class="style5"><input style="padding:2px; border:1px #999 solid; color:blue;" name="userfile[]" type="file" id="userfile[]" /></td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right"></div></td>
    <td class="style5"><input class="form" type="submit" name="upload" value="upload" accesskey="6" tabindex="6" /></td>
  </tr>
</table>
</form>

 

And here is the script:

 

<?php
$uploadDir = 'upload/';
$uploadDir2= "upload/big".$HTTP_POST_FILES['userfile']['name'][1];

copy($HTTP_POST_FILES['userfile']['tmp_name'][1], $uploadDir2);

if(isset($_POST['upload']))
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];
$largeimage = $_FILES['userfile']['name'][1];
$filePath = $uploadDir . $fileName;

$result = move_uploaded_file($tmpName, $filePath);
if (!$result) {
echo "Error uploading file";
exit;
}

include 'config.php';
include 'opendb.php';

if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
$filePath = addslashes($filePath);
$largeimage = addslashes($largeimage);
}

$query = "INSERT INTO Products (title, description, price, paypal, cat, image, large) ".
"VALUES ('$_POST[title]','$_POST[description]','$_POST[price]','$_POST[paypal]','$_POST[cat]','$fileName','$largeimage')";

mysql_query($query) or die('Error, query failed : ' . mysql_error()); 

include 'closedb.php';

echo 'Product Uploaded';
?>

Link to comment
Share on other sites

Argh, I hate that there is not an edit button on these forums!

 

Since posting i have edited the code and written this, which works except the second image is not uploaded.

All data is inserted into the database and the first image is uploaded ok. Just the second one.

 

Where am i going run?

 

<?php
$uploadDir = 'upload/';
$uploadDir2 = "upload/big";

if(isset($_POST['upload']))
{
$fileName = $_FILES['userfile']['name'];
$tmpName = $_FILES['userfile']['tmp_name'];
$fileSize = $_FILES['userfile']['size'];
$fileType = $_FILES['userfile']['type'];
$fileName2 = $_FILES['userfile2']['name'];
$tmpName2 = $_FILES['userfile2']['tmp_name'];
$fileSize2 = $_FILES['userfile2']['size'];
$fileType2 = $_FILES['userfile2']['type'];

$filePath = $uploadDir . $fileName;
$filePath2 = $uploadDir2 . $fileName2;

$result = move_uploaded_file($tmpName, $filePath);
if (!$result) {
echo "Error uploading file 1";
exit;
}

$result = move_uploaded_file($tmpName2, $filePath2);
if (!$result) {
echo "Error uploading file 2";
exit;
}

include 'config.php';
include 'opendb.php';

if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
$filePath = addslashes($filePath);
$fileName2 = addslashes($fileName2);
$filePath2 = addslashes($filePath2);
}

$query = "INSERT INTO Products (title, description, price, paypal, cat, image, large) ".
"VALUES ('$_POST[title]','$_POST[description]','$_POST[price]','$_POST[paypal]','$_POST[cat]','$fileName','$fileName2')";

mysql_query($query) or die('Error, query failed : ' . mysql_error()); 

include 'closedb.php';

echo '}?>

 

the form now looks like this:

 

<select class="form" name="cat" accesskey="2" tabindex="2">
    
      <option value="Boards">Boards</option>
      <option value="Accessories">Accessories</option>
      <option value="Clothing">Clothing</option>
      </select>
      </td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Description</div></td>
    <td class="style5"><textarea class="form" name="description" cols="50" rows="5" accesskey="3" tabindex="3"></textarea></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Price<br />
        <span class="d">Including </span></div></td>
    <td class="style5"><input class="form" type="text" name="price" accesskey="4" tabindex="4" /></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Paypal Link<br />
    <span class="d">Including</span></div></td>
    <td class="style5"><input class="form" type="text" name="paypal" accesskey="5" tabindex="5" /></td>
    </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Thumbnail<br />
      <span class="d">Image should be 100 x 100 </span></div></td>
    <td class="style5">
  <input style="padding:2px; border:1px #999 solid; color:blue;" name="userfile" type="file" id="userfile"> </td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right">Image<br />
      <span class="d">Image should be 300 x 450 </span></div></td>
    <td class="style5"><input style="padding:2px; border:1px #999 solid; color:blue;" name="userfile2" type="file" id="userfile2" /></td>
  </tr>
  <tr>
    <td valign="top" class="style5"><div align="right"></div></td>
    <td class="style5"><input class="form" type="submit" name="upload" value="upload" accesskey="6" tabindex="6" /></td>
  </tr>
</table>
</form>

 

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.