1

我有一个产品页面,其中 8 个产品图像在一个列表中,该列表由存储在 MySQL 数据库中的图像填充。这些图像都有关联的 ID,其中价格、产品名称和描述也与相同的 ID 关联。

我想做的事情背后的想法是;当用户单击 8 个产品图像中的一个时,他们将被重定向到“结帐”页面,该页面将显示相同的图像,以及数据库中该 ID 下存储的所有信息。

截至目前,我有结帐页面 URL,包括图像的 ID (url.com/checkout.php?id=1),我希望找到一种方法来获取存储在 URL 中该 ID 下的所有信息显示在页面上调用的位置。

这是我的 php 代码,它在产品页面的列表中显示图像:

    // Grab the data from our template table 
            $sql = "select * from templates"; 
            $result = mysql_query($sql) or die ("Could not access DB: " . mysql_error()); 
            while ($row = mysql_fetch_assoc($result)) 
            { 
                echo "<li>"; 
                echo "<a class=\"caption\" href=\"purchase.php?id=\"" . $row['id'] . ">"; 
                // Note that we are building our src string using the ID from the database 
                echo "<img src=\"http://URL-REMOVED.com/file_display.php?id=" . $row['id'] . "\" />"; 
                echo "<span>"; 
                echo "<big>" . $row['name'] . "</big>"; 
                echo $row['description']; 
                echo "</span>"; 
                echo "</a>"; 
                echo "</li>"; 

            }  

这是应该收集点击产品信息的 php 代码(但没有):

    if (isset($_GET['id'])) 
        $id=$_GET['id']; 
    else 
         $id=1; 

    if (isset($_GET['action'])) 
        $action=$_GET['action']; 
     else 
        $action="empty"; 


    switch($action){ 

        case "add": 

        if($_SESSION['cart'][$id]) 
           $_SESSION['cart'][$id]++; 
        else 
            $_SESSION['cart'][$id]=1; 

         break;     

        case "remove": 

        if($_SESSION['cart'][$id]) 
       { 
           $_SESSION['cart'][$id]--; 

           if($_SESSION['cart'][$id]==0) 
    unset($_SESSION['cart'][$id]); 
           } 

          break;     

          case "empty": 
         unset($_SESSION['cart']); 

         break;     
         } 

 //Display Cart 

      if(isset($_SESSION['cart'])) { 

            $total=0; 
            foreach($_SESSION['cart'] as $id => $x) { 
            $result=mysql_query("select image,name,price,description from templates WHERE id=$id"); 
            $myrow=mysql_fetch_array($result); 
            $image=$myrow['image']; 
            $name=$myrow['name']; 
            $price=$myrow['price']; 
            $description=$myrow['description']; 

      }  
    }

这是应该显示信息的实际 HTML/PHP:

  <a class="caption" href="checkout.php"> 
            <img src="http://URL-REMOVED.com/file_display.php?id=<?php $myrow['id'] ?>"/> 
            <span> 
                <big> 
                    <strong><?php $myrow['name'] ?></strong> 
                </big> 

                <div class="price"><?php $myrow['price'] ?></div> 
            </span> 
        </a> 
    </div> 
    <div id="info_form_container"> 
    <div class="product_info"> 
        <div class="control-group"> 
            <strong>Template Name:</strong>  
            <?php $myrow['name'] ?> 
        </div> 

        <div class="control-group"> 
            <strong>Template Description:</strong> 
            <?php $myrow['description'] ?> 
        </div> 

        <div class="control-group"> 
            <strong>Template Price: </strong> 
            <?php $myrow['price'] ?> 
        </div> 
    </div>

我想我不确定这是否是最好的方法?但我绝对希望将图像存储在数据库中,并且我绝对想使用 ID 调用它们......

我怎样才能做到这一点?我的代码哪里错了?

4

1 回答 1

0

编辑:我认为我第一次没有理解你的问题。尝试使用它来生成您的产品列表,更新连接信息。如果可行,请使用以下方法清理变量并将连接信息存储在其他位置

<?php
    $mysqli_connection = new mysqli("localhost", "username", "password", "database");
    $sql = "SELECT * FROM templates"; 
    $result = $mysqli_connection->query($sql);
    while ($row = $result->fetch_array(MYSQLI_ASSOC)) { 

        $id = $row['id'];
        $name = $row['name'];
        $description = $row['description'];

        echo '<li>'; 
        echo '<a href="purchase.php?id='.$id.'" class="caption">'; 
        echo '<img src="http://URL-REMOVED.com/file_display.php?id='.$id.'" />'; 
        echo '<span>'; 
        echo '<big>'.$name.'</big>'; 
        echo $description; 
        echo '</span>'; 
        echo '</a>'; 
        echo '</li>';
    }
?>

OG 答案:

我认为您所做的一切都很好。这是我使用的方法(尽管我的方法看起来更整洁一些)。运行您的 PHP 函数以使用您获得的 ID 查询您的 MySQL 数据库,然后开始将您获得的信息转储到您的站点中。为了提高可读性并减少拼写混淆,将$myrow['whatever']结果分配给变量以呼应出来可能会有所帮助,但这对我来说比什么都更美观。

要修复 MySQL 并使用 mysqli,请尝试以下操作:

$sql = "SELECT * FROM templates"; 
$result = $mysqli_connection->query($sql);
while ($row = $result->fetch_array(MYSQLI_ASSOC)) { 
    echo "<li>"; 
    echo "<a class=\"caption\" href=\"purchase.php?id=\"" . $row['id'] . ">"; 
    // Note that we are building our src string using the ID from the database 
    echo "<img src=\"http://URL-REMOVED.com/file_display.php?id=" . $row['id'] . "\" />"; 
    echo "<span>"; 
    echo "<big>" . $row['name'] . "</big>"; 
    echo $row['description']; 
    echo "</span>"; 
    echo "</a>"; 
    echo "</li>";
}  

并尝试使用以下方法清理您的信息:

$my_stuff = mysqli_connection->real_escape_string($row['that_stuff']);

此外,您知道如果您愿意,可以在 echo 语句周围使用单引号 (''),对吗?可能会使转义所有双引号更容易..

所以总的来说,这可能是我要做的一个粗略的例子,但我会将它分成函数,并可能创建一些全局变量(例如连接本身):

<?php


    $mysqli_connection = new mysqli("localhost", "username", "password", "database");
    $sql = "SELECT * FROM templates WHERE id=$id"; 
    $result = $mysqli_connection->query($sql);
    // I'm assuming there is only one entry, so no while loop for me
    $row = $result->fetch_array(MYSQLI_ASSOC);

    $your_title = $mysqli_connection->real_escape_string($row['title']);
    $path_to_image = $mysqli_connection->real_escape_string($row['image']);
    $description = $mysqli_connection->real_escape_string($row['description']);
    $price = $mysqli_connection->real_escape_string($row['price']);

?>

<html>
    <head></head>
    <body>
        <h3><?php echo $your_title; ?></h3>
        <img src="<?php echo $path_to_image; ?>" />
        <ul>
            <li>Description: <?php echo $description; ?></li>
            <li>Price: <?php echo $price; ?></li>
            <!-- etc..-->
于 2012-08-23T18:14:23.313 回答