Error แบบนี้ครับทั้ง ๆ ที่ผมเปลี่ยน ตัวแปรแค่ 2 - 3 ตัวเอง
เงียบ สงสัยจะนอนกันหมดแล้ว.อิอิ
Date :
2013-07-29 00:33:15
By :
chak.jakkree
เอา Query ไปเช็คดูยังคับ
Date :
2013-07-29 01:01:23
By :
Krungsri
เงียบสงสัยจะได้แล้ว
Date :
2013-07-29 08:35:00
By :
Dragons_first
ขึ้น Error แบบนี้แทนครับ Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\saso\search.php on line 65
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<table width="599" border="1">
<tr>
<th>Keyword
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search"></th>
</tr>
</table>
</form>
<?
if($_GET["txtKeyword"] != "")
{
$objConnect = mysql_connect("localhost","root","123456") or die("Error Connect to Database");
$objDB = mysql_select_db("data");
// Search BySubj_ID or Subj_NTh
$strSQL = "SELECT * FROM tbl_subj WHERE (Subj_ID LIKE '%".$_GET["txtKeyword"]."%' or Subj_NTh LIKE '%".$_GET["txtKeyword"]."%' ) ";
$objQuery = mysql_query($strSQL) or die (mysql_error());
$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;
}
$strSQL .=" order by tbl_subj ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="512" border="1">
<tr>
<th width="91"> <div align="center">ID </div></th>
<th width="98"> <div align="center">ชื่อ</div></th>
<th width="198"> <div align="center">หน่วยกิต</div></th>
<th width="97"> <div align="center">#</div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["Subj_ID"];?></div></td>
<td><?=$objResult["Subj_NTh"];?></td>
<td><?=$objResult["Subj_"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i&txtKeyword=$_GET[txtKeyword]'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page&txtKeyword=$_GET[txtKeyword]'>Next>></a> ";
}
mysql_close($objConnect);
}
?>
</body>
</html>
Date :
2013-07-29 09:03:55
By :
chak.jakkree
order by tbl_subj ASC มีฟิว นี้ด้วยใช่ป่าวคับ ตั้งคล้าย table เลย
Date :
2013-07-29 09:11:09
By :
teez1232002
Load balance : Server 05