|
|
|
ช่วยดูโค้ดให้หน่อยค่ะ ว่ามีอะไรผิดตรงไหน เป็นการแสดวข้อมูลค่ะ |
|
|
|
|
|
|
|
|
ประวัติการแก้ไข 2013-03-10 15:22:56
|
|
|
|
Date :
2013-03-10 14:57:55 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php session_start();?>
<!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>
<p align="center"><strong>แสดงรายการประเภทวัตถุดิบอาหารไทย</strong></p>
<form id="form1" name="form1" method="post" action="qr_addstaplecategory.php">
<table width="619" border="1" align="center">
<thead>
<tr>
<td width="237" align="center">รหัสประเภทวัตถุดิบอาหาร</td>
<td width="276" align="center">ชื่อประเภทวัตถุดิบอาหาร</td>
<td width="46" align="center">แก้ไข</td>
<td width="33" align="center">ลบ</td>
</tr>
<thead>
<tbody>
<?php
include('connect_db.php');
$sql_selectshow="SELECT * FROM staplecategory_tb";
$qr_sel= mysqli_query($sql_selectshow); // ลอง query ด้วย mysqli ครับ
while($row = mysqli_fetch_array($qr_sel)){
?>
<tr>
<td class="style1">
<div align="center"><?php echo $row[0];?></div></td>
<td class="style1">
<div align="center"><?php echo $row[1];?></div></td>
<td align="center">แก้ไข</td>
<td align="center">ลบ</td>
</tr>
<?php
}//end ioop
?>
</tbody>
</table>
</form>
<p> </p>
</body>
</html>
ลองดูแค่นี้ก่อนครับ ออกไหม
|
ประวัติการแก้ไข 2013-03-10 15:12:27
|
|
|
|
Date :
2013-03-10 15:04:49 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้แล้วยังไม่ได้เลยค่ะ
|
|
|
|
|
Date :
2013-03-10 21:07:56 |
By :
sasipha16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mysqli_fetch_array เปลี่ยนเป็น mysql_fetch_array ลบตัว i ออกซิ ได้ป่าว
|
|
|
|
|
Date :
2013-03-10 21:23:57 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|