|
|
|
ผู้รู้ช่วยทีครับ ทำยังไงให้การแสดงผลกาาค้นหามันกลับเอาข้อมูลที่ใหม่กว่าขึ้นมา |
|
|
|
|
|
|
|
ออกแบบ Database ไว้ยังไงบ้างครับ
|
|
|
|
|
Date :
2014-09-14 09:48:34 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
order by datetime desc
|
|
|
|
|
Date :
2014-09-14 10:25:17 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไงอ่ะครับ #2 งง ต้องใส่ตรงไหนอ่ะครับ
|
|
|
|
|
Date :
2014-09-14 21:40:28 |
By :
dlast |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
table {
border-collapse: collapse;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ค้นหาหนัง : Moviescitytown.com </title>
</head>
<body>
<p align="right">
</p>
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>">
<p align="center">
<font color="red"> ค้นหาหนังเรื่องโปรดที่คุณอยากดูได้ที่นี่ <br/> โดยขณะนี้เรามีหนังยู่มากกว่า 100 เรื่อง <br/> </font> <br/>
<table width="599" border="0">
<tr>
<th>คำค้นหา
<input name="keyword" type="text" id="keyword" value="<?=$_GET["keyword"];?>">
<input type="submit" value="ค้นหาความหมาย"> </th>
</tr>
</table>
</form>
<?
if($_GET["keyword"] != "")
{
$con= mysql_connect( "localhost", "egegerger", "bberre") or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
mysql_select_db("ergegerer") or die("เลือกฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF8");
$strSQL = "SELECT * FROM M_movies WHERE ( `name` LIKE '%".$_GET["keyword"]."%' or `m_tag` LIKE '%".$_GET["keyword"]."%' or `details` LIKE '%".$_GET["keyword"]."%' )";
$objQuery = mysql_query($strSQL) or die (mysql_error());
?>
<p align="center">
<font color="black"> </font>
<br/> <br/> <br/>
<table width="400" border="0">
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td>
<a href="ViewMovie.php?id_movie=<?=$objResult["id_movie"];?>"> <img src="<?=$objResult["m_pic"];?>" width="120" height="120"> </a> </td>
<td><a href="ViewMovie.php?id_movie=<?=$objResult["id_movie"];?>"> <?=$objResult["name"];?> </a> </td>
</tr>
<?
}
?>
</table>
</p>
<?
mysql_close($con);
}
?>
</body>
</html>
|
|
|
|
|
Date :
2014-09-14 21:41:36 |
By :
dlast |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา statement ที่คุณทำ แล้ว มันไม่ได้เรียงตามต้องการมาดูครับ
สำหรับตัวอย่าง
select bra1, bra2, bra3 from brabra where bra=bra order by fielddatetime desc
|
|
|
|
|
Date :
2014-09-14 21:44:52 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|