|
|
|
ปัญหา ดึงภาพ จาก mysql ไม่ได้ ช่วยดูให้หน่อยครับผมผิดตรงไหน หน้า |
|
|
|
|
|
|
|
ช่วยดูให้หน่อยครับผมผิดตรงไหน
หน้า insert.php
<?
if (!$send) {
?>
<form action="<? $PHP_SELF; ?>" method="post">
<h3><b>เพิ่มรายการสินค้า</b></h3><br />
รหัสสินค้า : <input name="id" type="text" size="6" maxlength="6" />
<br>
ประเถทสินค้า : <input name="type" type="text" maxlength="100">
<br>
ราคา : <input name="price" type="text" size="6" maxlength="6">
<br>
จำนวน : <input name="amount" type="text" size="6" maxlength="6">
<br>
size : <input name="size" type="text" size="6" maxlength="6">
<br>
ไฟล์ภาพ : <input name="picture" type="file"><br>
<input name="send" type="submit" value="ตกลง">
<input name="cancel" type="reset" value="ยกเลิก">
</form>
<?
} else
{
$path_pic="D:/AppServ/www/image/MyResize/"; //กำหนดพาธเก็บรูปภาพ
if ($picture !=none) // ตรวจสอบว่ามีรูปที่ต้องการ up หรือไม่
{
if (copy ($picture, "$path_pic/$type.jpg"))
{ $image = $type.".jpg"; //เชื่อมต่อระหว่างประเภทสินค้า กับ.jpg
$link = mysql_connect ("localhost","root","1234");
mysql_query ("use shopdb;");
mysql_query ("set NAMES tis620");
$sql = "insert into product1(id,type,price,amount,size,picture)
Values ('$id', '$type', '$price', '$amount', '$size', '$image');";
$result = mysql_query($sql);
if($result)
{
echo "เพิ่มรายการสินค้าแล้ว<p>";
mysql_close($link);
}
else
{
echo "ไม่สามารถเพิ่มได้ อาจเนื่องจากมีรายการสินค้าแล้ว<p>";
}
}
else
print ("error copying file.");
}
else
echo " no file to be upload!";
}
?>
**// เพิ่มข้อมูลได้ไม่มีปัญหาครับ ชื่อรูปก็ไป เก็บใน mysql และ รูปก็ไปเก็บใน folder เรียบร้อย แต่ว่า.......หน้าต่อไปครับมีปัญหา
show.php // ดึงข้อมูลได้ทุกอย่าง ยกเว้นรูปครับ..มันไม่โชว์
<?
{
$path ="http://localhost/image/MyResize/"; //กำหนดพาธเก็บรูปภาพ
echo "<h3><b>แก้ไข-ลบรายการห้องพัก</b></h3>";
echo "<table border=1>
<tr>
<td><center>ลบ-แก้ไข</center></td>
<td><center>ประเภทสินค้า</center></td>
<td><center>ราคา</center></td>
<td><center>จำนวน</center></td>
<td><center>size</center></td>
<td><center>ภาพ</center></td>
</tr>";
$link = mysql_connect("localhost","root","1234");
mysql_query("use shopdb;");
mysql_query("set NAMES tis620");
$sql = "select * from product1;";
$result = mysql_query($sql);
while ($dbarr=mysql_fetch_array($result))
{
echo "<tr>
<td><center><a href=update.php?id=$dbarr[id]&type=$dbarr
[type]&price=$dbarr[price]&amount =$dbarr[amount]&size =$dbarr[size]>
<img src=".$path."edit.gif></a><a href=delete.php?id=$dbarr[id]&type=
$dbarr[type]><img src=".$path."delete.gif width=50 height=50>
</a></center>
</td>
<td><center>$dbarr[type]</center></td>
<td><center>$dbarr[price]</center></td>
<td><center>$dbarr[amount]</center></td>
<td><center>$dbarr[size]</center></td>
<td><center><img src=".$path.$dbarr[picture]."width=150 height=100>
</center></td>
</tr>";
}
echo "</table>";
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-09-23 04:29:47 |
By :
kittioof |
View :
1331 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง <img src='$path.$dbarr[picture]' width=150 height=100> ดูนะครับ
หรือไม่ลอง echo .$path.$dbarr[picture].; ออกมาดู
ปล. ถ้าผิดพลาดก็ขออภัยด้วยนะครับ
|
|
|
|
|
Date :
2009-09-23 05:14:32 |
By :
itdekd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<img src=\"".$path.$dbarr[picture]."\" width=150 height=100> ลองแบบนี้ดูครับ
|
|
|
|
|
Date :
2009-09-23 08:19:29 |
By :
lozomac |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|