รายละเอียดของการตอบ ::
ทำได้แล้วครับตามcodeด้านล่างครับ ขอบคุณ ท่าน NewbieXYZ , thaicreate.com ครับ
Code (PHP)
<?php
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?ddlSelect={$_GET["ddlSelect"]}&Page=$Prev_Page&txtKeyword={$_GET["txtKeyword"]}'><< Back</a> ";
}
error_reporting( error_reporting() & ~E_NOTICE );
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?ddlSelect={$_GET["ddlSelect"]}&Page=$i&txtKeyword={$_GET["txtKeyword"]}'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?ddlSelect={$_GET["ddlSelect"]}&Page=$Next_Page&txtKeyword={$_GET["txtKeyword"]}'>Next>></a> ";
}
mysql_close($objConnect);
?>
สอบถามเพิ่มเติมครับ ^^ ลักษณะนี้จะต้องใช้ isset แทรกเข้าไปยังไงครับ หรือต้องแก้ไขอย่างไรครับ
ขอบคุณครับ
Total 84 Record : 17 Page : 1
Notice: Undefined index: ddlSelect in C:\xampp\htdocs\helpdesk\Mainpage.php on line 185
Notice: Undefined index: txtKeyword in C:\xampp\htdocs\helpdesk\Mainpage.php on line 185
[ 2 ]
Notice: Undefined index: ddlSelect in C:\xampp\htdocs\helpdesk\Mainpage.php on line 185
Notice: Undefined index: txtKeyword in C:\xampp\htdocs\helpdesk\Mainpage.php on line 185
[ 3 ]
Notice: Undefined index: ddlSelect in C:\xampp\htdocs\helpdesk\Mainpage.php on line 185
แก้ได้แล้วครับ ผมปิด E_NOTICE (Security Level) ปิดการแจ้งเตือนของ PHP ครับ
ขอบคุณครับ
Code (PHP)
<?PHP
error_reporting( error_reporting() & ~E_NOTICE );
?>