php ให้แสดงเฉพาะ id ล่าสุดอย่างเดียว รบกวนด้วยนะคับ....
มี fileds ไหนไหมครับ ที่บอกว่าเป็น id ล่าสุด
Date :
2013-04-05 10:52:39
By :
Ex-[S]i[L]e[N]t
id_name คับ เอา id_name ล่าสุดอันเดียว
Date :
2013-04-05 10:55:30
By :
au_mutd
ลองใช้คำสั่ง mysql_insert_id(); จะได้ค่าล่าสุดที่ทำการ insert
Date :
2013-04-05 10:57:34
By :
Ex-[S]i[L]e[N]t
ใส่ตรงไหนคับ 555+ รบกวนอีกที
Date :
2013-04-05 11:03:00
By :
au_mutd
บรรทัดที่ 16
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?
if($_POST['mode'] == "search" ){
echo "<table border='1' width=50%>";
if($_POST['department'] != "" ) {
//echo "?? ";
$hostname = "localhost"; //?
$user = "root"; //?
$password = "root"; //??
$dbname = "risk"; //??
//$tblname = "data"; //??
//$sql ="select * from data where data. username ='".$_POST['username']."' and data. pass ='".$_POST['pass']."' ";
$sql ="select * from data_insert where department ='".$_POST['department']."' ORDER BY DESC LIMIT 1 "; //
//echo $sql;
// ติด ต่อ database
mysql_connect($hostname, $user, $password) or die("cannot connect");
// เลือก database
mysql_select_db($dbname) or die("cannot select db");
// ทำให้ อ่านภาษาไทยได้ใน utf8
mysql_query("SET NAMES utf8");
$result = mysql_query($sql) or die(mysql_error());
$row_number = mysql_num_rows($result); // หาจำนวน แถว ข้อมูลที่ ค้นหาได้
$id=1;
if($row_number > 0){
while($record = mysql_fetch_array($result)){
$record1=$record["id_name"];
$record2=$record["department"];
$record3=$record["name_risk"];
$record4=$record["status"];
?>
<tr bgcolor="#F3F7FE" bordercolor="#0033FF">
<td style="font:tahoma; color:#00008B; text-align:center; font-size:12px; width:1%;"><a><?=$id?></a></td>
<td style="font:Arial, Helvetica, sans-serif; color: #993399; text-align:left; font-size:12px; width:8%;"><b><a href="form_add3.php?id_name=<?=$record1?>"><?=$record3?> </a></b></td>
<td style="font:tahoma; color:#00008B; text-align:center; font-size:12px; width:4%;"><a href="form_add2.php?id_name=<?=$record1?>">รายละเอียดข้อมูล</a></td>
<td style="font:tahoma; color:#660000; text-align:center; font-size:15px; width:4%;"><?=$record4?></td>
</tr>
<?php
$id++;
?>
<p>
<?php
}
}else{// ไม่พบข้อมูลที่ค้นหา
echo "<tr><td colspan='8'><b><font color=ff0000>ไม่พบข้อมูลของคุณ...กรุณาลองใหม่อีกครั้ง</font></b></td></tr>";
}
//ไม่มีค่าส่งมา
}else{
echo "<tr><td colspan='8' >กรุณาใส่ Username และ Password ของท่าน</td></tr>";
}
echo "</table>";
}
?>
Date :
2013-04-05 11:09:19
By :
Ex-[S]i[L]e[N]t
ขึ้นแบบนี้คับ
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DESC LIMIT 1' at line 1
Date :
2013-04-05 11:13:53
By :
au_mutd
ได้แล้วคับ ขอบคุณมากๆคับ
Date :
2013-04-05 11:15:11
By :
au_mutd
Load balance : Server 04