0

我正在开发基本的电子商务项目,我正在尝试使用 mysql 中的文件路径名显示图像并将图像文件存储在文件夹名称“image”中。

我使用此代码显示图像但不工作,只是不显示图像...请参阅示例代码...

/// Gather these full product Information from database /// //////

if ( isset( $_GET['pid'] ) ) {
    $targetID = $_GET['pid'];
    $sql = mysql_query("SELECT * FROM product WHERE product_id='$targetID' LIMIT 1");
    $productCount = mysql_num_rows($sql); // count the output amount
    if ( $productCount > 0 ) {
        while ( $row = mysql_fetch_array( $sql ) ) { 
            $product_id = $row["product_id"];
        $product_name = $row["product_name"];
        $product_detail = $row["product_detail"];
        $product_company = $row["product_company"];
        $screenshot = $row["screenshot"];
        }
    } else {
        echo "Sorry dude that crap dont exist.";
        exit();
    }
}
?>

我使用的部分表格......(请参阅最后一行显示回声的行......)

<form id="form1" name="form1" method="post" action="edit_company.php">
  <table width="95%" border="1" align="center">
  <tr>

    echo '<td width="36%" rowspan="9" align="right">  <img src="' . GW_UPLOADPATH . $screenshot .'" width="351" height="402" />  </td>';

但是最后一行没有显示图像,我错过了什么!

4

1 回答 1

0

尝试这个

 <img src="<?php echo $GW_UPLOADPATH . $screenshot ?>" width="351" height="402" />
于 2013-10-10T05:32:58.577 回答