上传并显示一个产品的多个图像?

时间:2014-01-03 20:23:55

标签: php mysql

我正在使用PHP / MYSQL开发一个基本的电子商务网站。我只需要知道如何为产品上传多个图像,然后在产品页面中显示它们。 至于上传多张图片,我不想使用像这样的uploadify或开源代码。如果可能的话,我宁愿有3-4个额外的文件上载字段!

我无法理解显示图像(1个产品的多个图像)。我真的不明白它应该如何运作!所以任何关于简单术语的建议都会受到赞赏。

目前我每个产品只能上传1张图片。

这是我到目前为止所做的,请忽略第一个文件中的mysql查询,因为在我将mysql转换为mysqli之前,这还没有生效。只需先将函数排序:

  

upload.php的

<?php 
// Parse the form data and add inventory item to the system
if (isset($_POST['product_name'])) {

    $product_name = mysql_real_escape_string($_POST['product_name']);
    $price = mysql_real_escape_string($_POST['price']);
        $quantity = mysql_real_escape_string($_POST['quantity']);
    $category = mysql_real_escape_string($_POST['category']);
    $details = mysql_real_escape_string($_POST['details']);
    // See if that product name is an identical match to another product in the system
    $sql = mysql_query("SELECT id FROM products WHERE product_name='$product_name' LIMIT 1");
    $productMatch = mysql_num_rows($sql); // count the output amount
    if ($productMatch > 0) {
        echo 'Sorry you tried to place a duplicate "Product Name" into the system, <a href="add.php">click here</a>';
        exit();
    }
    // Add this product into the database now
    $sql = mysql_query("INSERT INTO products (product_name, price, quantity, details, category, date_added) 
        VALUES('$product_name','$price','$quantity','$details','$category',now())") or die (mysql_error());
     $pid = mysql_insert_id();
    // Place image in the folder 
    $newname = "$pid.jpg";
    move_uploaded_file( $_FILES['fileField']['tmp_name'], "../inventory_images/$newname");
    header("location: add.php"); 
    exit();
}
?>
  

product.php &lt;&lt;&lt;这是显示产品详细信息和图像的页面。

<?php 
// Check to see the URL variable is set and that it exists in the database
if (isset($_GET['id'])) {
    // Connect to the MySQL database  
    include "config/connect.php"; 
    $id = preg_replace('#[^0-9]#i', '', $_GET['id']); 
    // Use this var to check to see if this ID exists, if yes then get the product 
    // details, if no then exit this script and give message why
    $sql = "SELECT * FROM products WHERE id='$id' LIMIT 1";
    $query = mysqli_query($db_conx, $sql);
    $productCount = mysqli_num_rows($query); // count the output amount
    if ($productCount > 0) {
        // get all the product details
            while($row = mysqli_fetch_array($query, MYSQLI_ASSOC)){ 
             $product_name = $row["product_name"];
             $price = $row["price"];
             $details = $row["details"];
             $quantity = $row["quantity"];
             $category = $row["category"];
             $date_added = strftime("%b %d, %Y", strtotime($row["date_added"]));
         }

    } else {
        echo "That item does not exist.";
        exit();
    }

} else {
    echo "Data to render this page is missing.";
    exit();
}

?>

<table width="900" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="300" rowspan="5" align="right" valign="top" style="padding-top:10px;"><img src="inventory_images/<?php echo $id; ?>.jpg" width="300" height="450" alt="<?php echo $product_name; ?>" /></td>
    <td width="126" height="106">&nbsp;</td>
    <td width="274"><h3 style="font-family:Times New Roman; font-size:1.8em;"><?php echo $product_name; ?></h3></td>
  </tr>
  <tr>
    <td height="120">&nbsp;</td>
    <td><?php echo $details; ?></td>
  </tr>
  <tr>
    <td height="110">&nbsp;</td>
    <td style="font-family:Times New Roman; font-size:1.8em;">Price: £<?php echo $price; ?></td>
  </tr>
    <tr>
    <td height="50">&nbsp;</td>
    <td style="font-family:Times New Roman; font-size:1.8em;">Quantity Left: <?php echo $quantity; ?></td>
  </tr>
</table>

由于

1 个答案:

答案 0 :(得分:2)

目前您正在进行此操作的方式并不是真正设置多张照片,因为您没有在数据库中存储对照片的引用。您只需将图像重命名为产品的主键。因此,您需要执行类似1_1.jpg 1_2.jpg的操作,否则您将需要创建一个存储文件名和产品ID的数据库表,以便您可以建立一对多的关系。

至于上传更多图片,只需在表单中添加更多文件输入。

要显示,您需要从照片数据库表中提取记录,或使用glob()查找以主键+'_'开头的所有文件。

此外,不应再使用FYI mysql函数,因为它们已被弃用。