<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Untitled Document</title> </head> <body> <?php $host="localhost"; $db_username="root"; $db_password="1234"; $dbname="project-smileit"; mysql_connect($host,$db_username,$db_password);//////ติดต่อ ฐานข้อมูล $sql="select * from products p, type t where p.pro_type_id=t.Type_id";////////ดึงข้อมูลจากตารางโปรดัก mysql_query("SET NAMES utf8"); $result=mysql_db_query($dbname,$sql);////นำคำสั่ง sql ไปประมวลผล print"<table width=100% border=1>"; print"<th>รหัสสินค้า</th>"; print"<th>ชื่อสินค้า</th>"; print"<th>ราคาสินค้า</th>"; print"<th>รูปภาพสินค้า</th>"; print"<th>ประเภทสินค้า</th>"; print"<th>Edit</th>"; print"<th>Delete</th>"; while($row=mysql_fetch_array($result)){///////////นำข้อมูลแต่ละแถวเก็บที่ row print"<tr>"; print"<td align=center>$row[Pro_id] </td>"; print"<td>$row[Proname] </td>"; print"<td>$row[Price] </td>"; print"<td align=center><img src=$row[pro_image] width=200 height=200></td>"; print"<td align=center>$row[Type_name] </td>"; print"<td align=center><a href=editpro.php?proid=$row[Pro_id]>แก้ไข</a></td>"; print"<td align=center><a href=showproduct.php?proid=$row[Pro_id]>ลบ</a></td>"; print"</tr>"; } print"</table>"; $id=$_GET[proid]; if($id<>""){ $sqldel="delete from products where Pro_id='$proid'"; $resultdel=mysql_db_query($dbname,$sqldel); if($resultdel){ echo"<script>alert('ลบข้อมูลเรียบร้อยแล้ว')</script>"; echo"<meta http-equiv='refesh' content='0;URL=showproduct.php'>"; }else{ echo"<script>alert('ไม่สามารถลบข้อมูลได้')</script>"; } } ?> </body> </html>
print"<td align=center><img src=path หรือที่อยู่ของโฟล์เดอร์ที่เก็บไฟล์รูปไว้/ $row[pro_image] width=200 height=200></td>";
<img border="1" src="pic/<?=$R['pic'];?>" width="165" height="200" />
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง