มันไม่ผ่านอ่ะ ช่วยดูให้ที ครับ Warning: include(../inc/paging.inc.php)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>รายการสินค้า</title>
<style>
.add_cart {font-size:8pt; background-color:#ccbbff; color: brown;}
.line_dot {border-top:dotted 1px qray;}
</style>
<script src="../ajax/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>
<?php include("header.inc.php");?>
<table width="600" align="center" style="border: solid 1px #cccccc;">
<tr valign="top">
<td width="400">
<table width="100%" bordercolor="gray" style="border-collapse: collapse;">
<tr>
<td width="60"> </td>
<td width="200"> </td>
<td> </td>
</tr>
<?php
include("../inc/paging.inc.php");
include("dbconn.inc.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 product limit $start_row, $rows_per_page;";
$result = mysql_query($sal);
$found_rows =mysql_query("selsect 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['pro_id'];
$descr = substr($p['description'], 0, 80) . "...";
echo "
<tr valign =top>
<td rowspan=2 width =60 align=center>
<img width=50 src=read_image.php?id=$id/>
</td>
<td colspan=2>
<a href=product_detaill.php?id=$id>
<b>{$p['pro_name']}</b></a><br/>
$r
</td>
</tr>
<tr valign=bottom>
<td>
ราคา: {$p['price']} บาท
</td>
<td align=right>
<input type =button value=หยิบใส่รถเข็น class=add_cart onclick=\"addcart($id)\"/>
</td>
</tr>
<tr><td colspan=3 class=line_dot> </td></tr>";
}
?>
</table>
<p align="center">
<?php
$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;
?>
</p>
</td>
<td id="cart" bgcolor="#eeeeff">
<script> readcart(); </script>
</td>
</table>
</body>
</html>
มันขึ้นผิดต้องเนี่ย
Warning: include(../inc/paging.inc.php) [function.include]: failed to open stream: No such file or directory in C:\AppServ\www\project1\index.php on line 38
Warning: include() [function.include]: Failed opening '../inc/paging.inc.php' for inclusion (include_path='.;C:\php5\pear') in C:\AppServ\www\project1\index.php on line 38
Fatal error: Call to undefined function paging_start_row() in C:\AppServ\www\project1\index.php on line 48Tag : PHP
Date :
2011-07-26 11:49:32
By :
เบี้ยว
View :
1874
Reply :
3
"../inc/paging.inc.php" หาไฟล์นี้ไม่เจอ pathถูกต้องไหมครับ
ชื่อ function นี้ paging_start_row(); มีไหมครับ เพระามันไไม่รู้จักครับ
Date :
2011-07-26 13:05:31
By :
grandraftz
Error มันก็บอกอยู่แล้วนี่ครับว่าปัญหาเกิดจากอะไร
Warning: include(../inc/paging.inc.php) [function.include]: failed to open stream: No such file or directory in C:\AppServ\www\project1\index.php on line 38 <= ไม่มีไฟล์ตามที่ได้ include มา ดูเรื่อง path ดีๆ
ผมว่าแก้ตัวนี้ตัวเดียวอย่างอื่นน่าจะโอเคนะ
Date :
2011-07-26 13:07:17
By :
adaaugusta
ลองเอาที่ include ไปไว้บน head นะครับ
ถ้าไม่ได้ก็เช็ค path ครับ ถูกไหม
Date :
2011-07-26 14:22:31
By :
l3luEbirD
Load balance : Server 00