การส่ง url ไปกับค่าตัวแปร ให้แสดง url ทำนองนี้ ต้องทำอย่างไร.........สอบถามเพื่อหาคำตอบ
มีหน้า index.php เป็นหน้าหลักในการดึงหน้าอื่นๆ มาแสดง
ีurl จะเป็นทำนองนี้ index.php?mod=1,2,3 ไปเรื่อยๆ
ที่นี้ใน page1.php,page2.php,page3.php จะมีฟอร์มกรอกข้อมูลค้นหา
ฟอร์มกรอกข้อมูลค้นหา
Code
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<div align="right">
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>" style=" border: 1px solid #006;background: #E4E4E4;height:13;font-size:8pt; " value="ชื่อเพลง,นักร้อง,คำอธิบาย" OnClick="if(this.value=='ชื่อเพลง,นักร้อง,คำอธิบาย'){this.value='';}" onBlur="if(this.value==''){this.value='ชื่อเพลง,นักร้อง,คำอธิบาย';}">
<input type="submit" value="search" style=" border: 1px solid #006;background: #E4E4E4;height:13;font-size:8pt">
</div>
</form>
แสดงข้อมูลที่ค้นหาภายในหน้าเีดียวกันกับฟอร์มค้นหา
Code
?>
</table>
<br>
จำนวน <?= $Num_Rows;?> รายการ (<?=$Num_Pages;?>) หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'> ก่อนหน้า</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]'>ถัดไป »</a> ";
}
mysql_close();
}
?>
<?}?>
จะส่งค่าให้ url แสดงทำนองนี้ต้องส่ง ค่าตัวแปรไปกับ GET อย่างไร
index.php?mod=1&txtKeyword=คำค้นหา
index.php?mod=2&txtKeyword=คำค้นหา
index.php?mod=3&txtKeyword=คำค้นหาTag : PHP
Date :
2011-02-18 14:11:16
By :
sporn
View :
1131
Reply :
2
แบบนี้ละมั้ง ถ้าไม่ใช่ก็ต้องอธิบายใหม่ละ
&txtKeyword=$_GET[txtKeyword]&mod=$mod
Date :
2011-02-18 19:28:23
By :
PlaKriM
ลองพิมพ์ใน url อย่างนี้ index.php?mod=1&txtKeyword=มารดา จะแสดงข้อมูลได้ถูกต้อง ต้องให้แสดง url เช่นนี้ครับ
Code
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<div align="right">
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>" style=" border: 1px solid #006;background: #E4E4E4;height:13;font-size:8pt; " value="ชื่อเพลง,นักร้อง,คำอธิบาย" OnClick="if(this.value=='ชื่อเพลง,นักร้อง,คำอธิบาย'){this.value='';}" onBlur="if(this.value==''){this.value='ชื่อเพลง,นักร้อง,คำอธิบาย';}">
<input type="submit" value="search" style=" border: 1px solid #006;background: #E4E4E4;height:13;font-size:8pt">
</div>
</form>
Code
<?
if($_GET["txtKeyword"] != "")
{
mysql_connect($host, $username, $password) or die("ติดต่อฐานข้อมูลไม่ได้");
$charset ="SET NAMES 'utf8'";mysql_query($charset)
or die('Invalid query: ' . mysql_error());
mysql_select_db($dbname) or die("เลือกฐานข้อมูลไม่ได้");
// Search By Name or Email
$strSQL = "SELECT m.ID_FILE,m.title,m.views,m.filename,m.fileurl,m.ID_CAT,m.description,c.ID_CAT,c.title,m.commenttotal FROM $dbtable as m
LEFT JOIN $dbtable1 AS c ON (m.ID_CAT=c.ID_CAT) WHERE (m.title LIKE '%".$_GET["txtKeyword"]."%' or m.description LIKE '%".$_GET["txtKeyword"]."%') and m.ID_CAT IN($num_board)";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 50; // 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 m.ID_FILE ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table border="0" width="100%" bordercolor="#330000">
<tr>
<th width="2%" bgcolor="#CCCC66"> </th>
<th width="48%" bgcolor="#CCCC66"> <div align="center">ชื่อเพลง</div></th>
<th width="10%" bgcolor="#CCCC66"> <div align="center">ฟัง/ตอบ</div></th>
<th width="20%" bgcolor="#CCCC66"> <div align="center">นักร้อง,คำอธิบาย</div></th>
<th width="20%" bgcolor="#CCCC66"> <div align="center">หมวดหมู่</div></th>
</tr>
<?
if ($Num_Rows>0){
echo "พบข้อมูลทั้งหมด ".$Num_Rows." รายการ<br>";
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><img src=../image/a26.gif border=0 ></div></td>
<td><a href='#' onClick=MM_openBrWindow('play.php?id=<?=$objResult[0];?>','music','width=280,height=350')><?=$objResult[1];?></a></td>
<td><?=$objResult["views"];?>|<?=$objResult["commenttotal"];?></td>
<td><?=$objResult["description"];?></td>
<td ><a href="../forum/?action=downloads;cat=<?=$objResult[7];?>" target="_blank") ><?=$objResult[8];?></a></td>
</tr>
<?
}
} else {
echo "<tr><td align='center' colspan='5'><b>ไม่พบข้อมูล</b></td></tr>";
}
?>
</table>
<br>
จำนวน <?= $Num_Rows;?> รายการ (<?=$Num_Pages;?>) หน้า :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page&txtKeyword=$_GET[txtKeyword]'> ก่อนหน้า</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]'>ถัดไป »</a> ";
}
mysql_close();
}
?>
<?}?>
Date :
2011-02-18 20:12:23
By :
sporn
Load balance : Server 03