|
|
|
Parse error: syntax error, unexpected $end หาจนตาลาย ช่วยที่ |
|
|
|
|
|
|
|
Parse error: syntax error, unexpected $end หาจนตาลาย
Code (PHP)
<!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=windows-874" />
<title>-</title>
<link rel="stylesheet" href="style.css" />
<style>
.add_cart { font-size: 8pt; background-color: #CCBBFF; color: brown; }
.line_dot { border-top: dotted 1px gray; }
</style>
<script src="framework.js"> </script>
<script>
function addCart(id) {
var data = "id=" + id;
var URL = "add_cart.php";
ajaxLoad('post', URL, data, "cart");
}
function readCart() {
ajaxLoad('post', "read_cart.php", null, "cart");
}
</script>
</head>
<body>
<!-- ตารางที่ใช้วางโครงร่างของส่วนแสดงรายกรสินค้าและรายการในรถเข็น -->
<table width="600" align="center" style="border: solid 1px #cccccc;">
<tr valign="top">
<!-- ช่องเซลล์ด้านซ้าย แสดงรายการสินค้า -->
<td width="430">
<!-- ตารางย่อยที่ซ้อนอยู่ภายในช่องเซลล์ด้ายซ้าย เพื่อให้จัดวางข้อมูลได้ตามที่ต้องการ -->
<table width="100%" bordercolor="gray" style="border-colllapse: collapse;">
<tr><td width="60"> </td><td width="200"> </td><td> </td></tr>
<?
include("paging.inc.php");
include("connect.php");
//นำการแบ่งเพจมาใช้ด้วย เผื่อกรณีมีสินค้าจำนวนมาก
$current_page = 1;
if(isset($_GET['page'])) {
$current_page = $_GET['page'];
}
$rows_per_page = 5;
$start_row = paging_start_row($current_page, $rows_per_page);
$sql = "SELECT SQL_CALC_FOUND_ROWS * FROM material
LIMIT $start_row, $rows_per_page;";
$result = mysql_query($sql);
$found_rows = mysql_query("SELECT FOUND_ROWS();");
$total_rows = mysql_result($found_rows, 0, 0);
if($total_rows == 0) {
echo "<caption><b>ไม่พบรายการสินค้า</b></caption>";
}
else {
$stop_row = paging_stop_row($start_row, $rows_per_page, $total_rows);
echo "<caption><b>รายการสินค้าลำดับที่: " . ($start_row + 1) .
" - " . "$stop_row จากทั้งหมด $total_rows </b></caption>";
}
while($p = mysql_fetch_array($result)) {
$id = $p['mat_id'];
echo "
<tr valign=top>
<td> <b>{$p['mat_name']}</b> </td>
<td> ปริมาณต่อหน่วย : {$p['mat_det']} </td>
<td align=right> <input type=button value=หยิบใส่รถเข็น class=add_cart onClick=\"addCart($id)\" /> </td>
</tr>
} " ;
?>
</table>
<?
//แสดงหมายเลขเพจ
$page_range = 5;
$qry_str = "";
$total_pages = paging_total_pages($total_rows, $rows_per_page);
$pagenum = paging_pagenum($current_page, $total_pages, $page_range, $qry_str);
echo "หน้า: " . $pagenum;
?>
</td>
<!-- ช่องเซลล์ด้านขวา แสดงรายการสินค้าที่อยู่ในรถเข็น -->
<td id="cart" bgcolor="#eeeeff">
<script> readCart(); </script>
</td>
</tr>
</table>
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-04-18 01:00:27 |
By :
sajok |
View :
1016 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while($p = mysql_fetch_array($result)) {
67.$id = $p['mat_id'];
68.echo "
69.<tr valign=top>
70.<td> <b>{$p['mat_name']}</b> </td>
71.<td> ปริมาณต่อหน่วย : {$p['mat_det']} </td>
72.<td align=right> <input type=button value=หยิบใส่รถเข็น class=add_cart onClick=\"addCart($id)\" /> </td>
73.</tr>
74.} " ;
|
|
|
|
|
Date :
2011-04-18 01:55:44 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|