$a_id = $_GET["a_id"];
echo $a_id;
$action = $_GET["action"];
echo $action;
include("../connect.inc");
if(!isset($a_id))
{
echo"";
exit();
}
$q_id = $_GET['a_id'];
if(isset($action))
{
$sql = "update addnews set a_view=a_view+1 where a_id = '$a_id' ";
mysql_query($sql) or die ("Update error : $sql");
echo "";
}
$sql = "select * from addnews where a_id = '$a_id' ";
$query = mysql_query($sql) or die ("Select A error : $sql");
$row = mysql_fetch_array($query);
//print_r($row);
require ('/home/santoninog/domains/santoninogame.com/public_html/pholy/template/config.php');
$strPagename = '1900';
include('/home/santoninog/domains/santoninogame.com/public_html/pholy/template/header.php');
?>
Events
include("../connect/connect.inc");
$sql = "select * from addnews order by a_id desc ";
$query =mysql_query($sql) or die (" select error = $sql") ;
$total = mysql_num_rows($query);
$perpage = 50;//จำนวนแสดงกระทู้
$page = empty($_GET['page'])?1:$_GET['page'];//เช็คเพื่้อให้ขึ้นในหน้า 1 และเมื่อใดที่เงื่อนไขเปนเท็จจะนำไปที่หน้า 2
$pageall = ceil ($total/$perpage);//กระู้ทั้งหมด นำมาหาร กับ จำนวนการแสดง และใช้ ceil ในการปัดเลขเพื่อให้เป็นจำนวนเต็มแม้จะมีเพียงแค่ .001 เท่านั้นก็ปัดขึ้นเลขใหม่
$start = ($page-1)*$perpage;//การลบหน้าปัจจุบันออกก่อนเพื่อ * กับ perpage แล้วมาลงใน limit
$sql .= " limit $start,$perpage"; // ข้อมูลที่แสดงแต่ะครั้ง .= โดยเริ่มต้นที่ 0 ของsql นั้นจะเอาคำสั่ง ข้อความ มาลงเแทน
//echo $sql;//บรรทัดนี้ไม่มีก็ได้
$query =mysql_query($sql) or die (" select error = $sql") ;
$num = mysql_num_rows($query);
?>
for($i=1; $i<=$num; $i++)//คำสั่งวนหลูบ
{
$row = mysql_fetch_array($query);
?>
|
}
?>
|
| |
|
|
include('bottom.php');
?>