我正在从事基本的电子商务项目,我正在尝试使用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>';
但是最后一行没有显示图像,我错过了什么!
答案 0 :(得分:0)
试试这个
<img src="<?php echo $GW_UPLOADPATH . $screenshot ?>" width="351" height="402" />