|
|
|
สอบถามเรื่องการแบ่งเพจโดยที่ไฟล์ที่จะแบ่งเป็นไฟล์ที่ include เข้าค่ะ |
|
|
|
|
|
|
|
include( 'file.php' );
ไม่โชว์ยังไงครับ? ช่วยอธิบายคำถามหน่อยคร้าบ
|
|
|
|
|
Date :
2012-06-29 22:32:39 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือมี 2 ไฟล์ค่ะ
1 bg.php เป็นพื้นที่สำหรับ include หน้าต่างๆ
2 show.php เป็นหน้าแสดงข้อมูลจาก database แบ่งหน้า
พอเรียกดูหน้า show.php อย่างเดียว มัน link หน้าได้
แต่พอ include show.php มาไว้ใน bg.php แล้วมันดูหน้าถัดไปไม่ได้ค่ะ
ไฟล์ show.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=tis-620" />
<title>Untitled Document</title>
</head>
<body>
<?php
$hostname = "localhost";
$username = "root";
$password = "1234";
$dbname = "preedaram";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn ) die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db ( $dbname, $conn ) or die ( "ไม่สามารถเลือกฐานข้อมูล school ได้" );
mysql_query("SET NAMES tis620");
$sqltxt = "SELECT * FROM activity ";
$objQuery = mysql_query($sqltxt) or die ("Error Query [".$sqltxt."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$sqltxt .=" order by id ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($sqltxt);
?>
<table width="900" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="60" height="32" align="center" bgcolor="#FFCC99"><font size="2"><strong>ลำดับที่</strong></font></td>
<td width="90" align="center" bgcolor="#FFCC99"><font size="2"><strong>วันที่</strong></font></td>
<td width="80" align="center" bgcolor="#FFCC99"><font size="2"><strong>เวลา</strong></font></td>
<td width="436" align="center" bgcolor="#FFCC99"><font size="2"><strong>กิจกรรม</strong></font></td>
<td width="120" align="center" bgcolor="#FFCC99"><font size="2"><strong>หมายเหตุ</strong></font></td>
</tr>
<?
while($rs = mysql_fetch_array($objQuery))
{
?>
<tr>
<td align="center" valign="top" bgcolor="#CCFFCC"><font size="2"><?php echo $rs["id"] ?></font></td>
<td align="center" valign="top" bgcolor="#CCFFCC"><font size="2"><?php echo $rs["date"] ?></font></td>
<td align="center" valign="top" bgcolor="#CCFFCC"><font size="2"><?php echo $rs["time"] ?></font></td>
<td width="436" align="left" valign="top" bgcolor="#CCFFCC"><font size="2"><?php echo $rs["title"] ?></font></td>
<td width="120" align="left" valign="top" bgcolor="#CCFFCC"><font size="2"><?php echo $rs["note"] ?></font></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[HTTP_REFERER]?page&Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[HTTP_REFERER]?page&Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[HTTP_REFERER]?page&Page=$Next_Page'>Next>></a> ";
}
mysql_close();
?>
</body>
</html>
|
|
|
|
|
Date :
2012-06-30 17:22:44 |
By :
piyaporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้ามีแบ่งหน้าแบบนี้ เราจะแก้จาก include เป็น iframe ค่ะ (อันนี้ของเรานะ)
|
|
|
|
|
Date :
2012-06-30 18:27:23 |
By :
นู๋น้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไงคะ ช่วยอธิบายหน่อย
ขอตัวอย่างการใช้ด้วยนะคะ
|
|
|
|
|
Date :
2012-06-30 22:56:00 |
By :
piyaporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<IFRAME name=ชื่อiframe src=ชื่อ URL ของคุณ width=ขนาดความกว้าง height=ขนาดความสูง frameborder=ขนาดเส้นขอบ scrolling=ตัว สกอร์บา></IFRAME>
เอาโค้ดนี้ไปแทนที่ include ค่ะ
|
|
|
|
|
Date :
2012-07-01 10:45:23 |
By :
นู๋น้อย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2012-07-01 19:21:45 |
By :
piyaporn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|