|
|
|
รบกวนช่วยเหลือโค้ด PHP หน่อยครับ คือผมเขียนตามในหนังสือแต่มันติด Error ไม่รู้เพระอะไรอะครับ ตรงช่วง Echo อะครับ |
|
|
|
|
|
|
|
Code (C#)
<?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>
<?php
include ("header.php");
include ("dbconn.inc.php");
include("../inc/paging.inc.php");
$current_page = 1 ;
if (isset ($_GET['page'] )) {
$current_page = $_GET['page'];
}
$rows_per_page = 10;
$start_row = paging_start_row ($current_page,$rows_per_page);
$sql = "select sql_calc_found_rows *,
date_format (end_date,'$d/$m/$y') AS ndate
from item
where end_date > now()
order by item_id DESC
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 (mysql_num_rows($result) == 0 )
{
echo "<p align="center">ไม่พบรายการที่เปิดประมูล</p> ///บรรทัดนี้ครับ
</body></html> ";
exit;
}
echo " <table align="center"> // บรรทัดนี้ครับ
<tr bgcolor="#0000FF">
<th width=50><รูปภาพ</th> ///บรรทัดนี้ครับ
<th width=250><ชื่อรูปภาพ</th>
<th width=100><ราคาปัจจุบัน</th>
<th width=100><วันปิดประมูล</th>
</tr>";
while($data = mysql_fetch_array($result)) {
$id =$data ['item_id'];
$mysql = "select max (offer) from bid where item_id = $id;"; ///บรรทัดนี้ครับ
$r=mysql_query($sql);
$cur_price = mysql_result ($r,0,0);
if (empty($cur_price)) {
$cur_price=$data['starting_price']; ///บรรทัดนี้ครับ
}
echo"<tr valign=top>
<td><img width=30 src=read_img.php?item_id=$id/> </td> ///บรรทัดนี้ครับ
<td> <a href\"item_detail.php?item_id=$id\">
($data['item_name']}</a></td> ///บรรทัดนี้ครับ
<td align="center"> $cur_price </td>
<td align="center"> {$data ['ndata']}</td> ///บรรทัดนี้ครับ
</tr>";
} ///บรรทัดนี้ครับ
echo"<tr><td colspan=4 align=center>";
$page_range=5;
$qry_str="";
$total_pages=pading_total_pafes($total_rows,$rows_per_page);
$pagenum= paging_pagenum($current_page,$total_pages,$page_range,$qry_str);
echo"หน้า".$pagenum;
echo"</td></tr>
</table>";
?>
</body>
</html>
รบกวนพวกพี่ๆช่วยหน่อยน่ะคร้าบ เพราะกำหนดส่ง 1 กุมพาแล้ว ผมแก้ไม่ออกเลย T____T
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-01-28 23:42:48 |
By :
opndangelo |
View :
892 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา Error มาแปะเลยครับ จะได้รู้ว่า Error เพราะอะไร
|
|
|
|
|
Date :
2013-01-29 00:33:20 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ติด Error อยูเนี่ย เป็นความรู้พื้นฐานของ PHP ทั้งหมดเลยครับ ลองเอาโค้ดที่ผมปรับแล้วไปรันดู อันไหนติดอีก ก็ลองไล่ดูว่าผมปรับตรงไหนไป ยังไงบ้าง
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>
<?php
include ("header.php");
include ("dbconn.inc.php");
include("../inc/paging.inc.php");
$current_page = 1 ;
if (isset ($_GET['page'] )) {
$current_page = $_GET['page'];
}
$rows_per_page = 10;
$start_row = paging_start_row ($current_page,$rows_per_page);
$sql = "select sql_calc_found_rows *,date_format (end_date,'$d/$m/$y') AS ndate";
$sql .= " from item where end_date > now() order by item_id DESC 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 (mysql_num_rows($result) == 0 )
{
echo "<p align='center'>ไม่พบรายการที่เปิดประมูล</p></body></html>"; ///บรรทัดนี้ครับ
exit;
}
echo "<table align='center'><tr bgcolor='#0000FF'><th width=50><รูปภาพ</th>";
echo "<th width=250><ชื่อรูปภาพ</th><th width=100>ราคาปัจจุบัน</th>";
echo "<th width=100><วันปิดประมูล</th></tr>";
while($data = mysql_fetch_array($result)) {
$id =$data ['item_id'];
$mysql = "select max (offer) from bid where item_id = $id"; ///บรรทัดนี้ครับ
$r=mysql_query($sql);
$cur_price = mysql_result ($r,0,0);
if (empty($cur_price)) {
$cur_price=$data['starting_price']; ///บรรทัดนี้ครับ
}
echo"<tr valign=top><td><img width=30 src=read_img.php?item_id=$id/></td>"; ///บรรทัดนี้ครับ
echo "<td><a href='item_detail.php?item_id=".$id."'>{".$data['item_name']."}</a></td>"; ///บรรทัดนี้ครับ
echo "<td align='center'>".$cur_price."</td><td align='center'>{."$data ['ndata']."}</td>"; ///บรรทัดนี้ครับ
echo "</tr>"; ///บรรทัดนี้ครับ
}
echo"<tr><td colspan=4 align=center>";
$page_range=5;
$qry_str="";
$total_pages=pading_total_pafes($total_rows,$rows_per_page);
$pagenum= paging_pagenum($current_page,$total_pages,$page_range,$qry_str);
echo"หน้า".$pagenum;
echo"</td></tr></table>";
?>
</body>
</html>
|
|
|
|
|
Date :
2013-01-29 00:36:05 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "<td align='center'>".$cur_price."</td><td align='center'>{."$data ['ndata']."}</td>";
เหลือแต่บรรทัดนี้อะครับ บรรทัด 57
|
|
|
|
|
Date :
2013-01-29 00:43:42 |
By :
opndangelo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
T__T
|
|
|
|
|
Date :
2013-01-29 02:01:24 |
By :
opndangelo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
<?php
include ("header.php");
include ("dbconn.inc.php");
include("../inc/paging.inc.php");
$current_page = 1 ;
if (isset ($_GET['page'] )) {
$current_page = $_GET['page'];
}
$rows_per_page = 10;
$start_row = paging_start_row ($current_page,$rows_per_page);
$sql = "select sql_calc_found_rows *,
date_format (end_date,'$d/$m/$y') AS ndate
from item
where end_date > now()
order by item_id DESC
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 (mysql_num_rows($result) == 0 )
{
echo "<p align=\"center\">ไม่พบรายการที่เปิดประมูล</p>
</body></html> ";
exit;
}
echo " <table align=\"center\">
<tr bgcolor=\"#0000FF\">
<th width=50><รูปภาพ</th>
<th width=250><ชื่อรูปภาพ</th>
<th width=100><ราคาปัจจุบัน</th>
<th width=100><วันปิดประมูล</th>
</tr>";
while($data = mysql_fetch_array($result)) {
$id =$data ['item_id'];
$mysql = "select max (offer) from bid where item_id = $id";
$r=mysql_query($sql);
$cur_price = mysql_result ($r,0,0);
if (empty($cur_price)) {
$cur_price=$data['starting_price'];
}
echo"<tr valign=top>
<td><img width=30 src=read_img.php?item_id=$id/> </td>
<td> <a href=\"item_detail.php?item_id=$id\">
{$data['item_name']}</a></td>
<td align=\"center\"> $cur_price </td>
<td align=\"center\"> {$data ['ndata']}</td>
</tr>";
} ///บรรทัดนี้ครับ
echo"<tr><td colspan=4 align=center>";
$page_range=5;
$qry_str="";
$total_pages=pading_total_pafes($total_rows,$rows_per_page);
$pagenum= paging_pagenum($current_page,$total_pages,$page_range,$qry_str);
echo"หน้า".$pagenum;
echo"</td></tr>
</table>";
?>
</body>
</html>
|
|
|
|
|
Date :
2013-01-29 06:45:59 |
By :
ปรับให้ก็ใช้จะถูกเสมอไป |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|