|
|
|
ติดปัญหาเรื่อง ค้นหาและเลือกข้อมูลไปแสดงหรือแก้ไขอีกหน้าครับ |
|
|
|
|
|
|
|
Code (PHP)
<a href='dbpoliceshow.php?id=<?php echo $objResult["id"]; ?>'>edit</a>// บรรทัดที่ 59
|
|
|
|
|
Date :
2013-02-08 11:43:40 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2013-02-08 11:50:39 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับ ดูหน้ารับ id ให้หน่อยครับ สมมุติว่า ส่งค่าไป id=25 แต่มี id อื่นมาด้วย รบกวนดูให้ด้วยครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com Tutorial</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis620">
<style type="text/css">
.style1 {font-size: xx-large;
font-weight: bold;
}
</style>
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
$host="localhost";
$username="root";
$password="root";
$db="police_mamber";
$tb="ob";
$connect= mysql_connect( $host,$username,$password) or die ("ติดต่อกับฐานข้อมูล Mysql ไม่ได้ ");
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("police_mamber");
mysql_db_query($dbname,"SET NAMES tis620");
mysql_query("SET character_set_database ='tis620'");
mysql_query("SET character_set_results ='tis620'");
mysql_query("SET character_set_client ='tis620'");
mysql_query("SET character_set_connection ='tis620'");
mysql_query("SET character_set_system ='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
$strSQL = "SELECT ob.*,e1.*,ps.* FROM ob,e1,ps WHERE ob.id=ob.id AND ob.id = e1.id AND ob.id = ps.id ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<?php
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><center><?=$objResult["id"];?></center></td>
<td><center><?=$objResult["idpeople"];?></center></td>
<td><center><?=$objResult["rank"];?></center></td>
<td><center><?=$objResult["sex"];?></center></td>
<td><center><?=$objResult["name"];?></center></td>
<td><center><?=$objResult["lastname"];?></center></td>
<td><center><img src="myfile/<?=$objResult["pic"];?>"></center></td>
<td><center><?=$objResult["year"];?></center></td>
<td><center><?=$objResult["levelsalary"];?></center></td>
<td><center><?=$objResult["salary"];?></center></td>
<td><center><?=$objResult["round"];?></center></td>
<td><center><?=$objResult["day"];?></center></td>
<td><center><?=$objResult["position"];?></center></td>
<td><center><?=$objResult["command"];?></center></td>
</tr>
<?php
}
?>
</table>
<?php
mysql_close($objConnect);
?>
<script type="text/javascript">
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
</script>
</body>
</html>
|
ประวัติการแก้ไข 2013-02-08 12:01:09 2013-02-08 12:03:35 2013-02-08 12:06:27
|
|
|
|
Date :
2013-02-08 11:59:42 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเป็นอะไรครับ หน้านี้
|
|
|
|
|
Date :
2013-02-08 12:01:12 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คือ ส่งค่าไปเป็น id 25 ใช่ไหมครับ แต่ตาราง แสดง id 26 ลงไปด้วยน่ะครับ เหมือนยังไม่รับค่า id ตามที่ส่งค่ามาอะครับ
คิดว่าผิดตรง query ครับ
|
ประวัติการแก้ไข 2013-02-08 12:07:40 2013-02-08 12:09:58
|
|
|
|
Date :
2013-02-08 12:05:38 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับผมแก้ query แบบนี้ครับ
$strSQL = "SELECT ob.*,e1.*,ps.* FROM ob,e1,ps WHERE ob.id=ob.id AND ob.id = e1.id AND ob.id = ps.id AND ob.id=$id";
|
|
|
|
|
Date :
2013-02-08 12:19:05 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
[php]$id=$_GET['id']
$strSQL = "SELECT ob.*,e1.*,ps.* FROM ob,e1,ps WHERE ob.id=ob.id AND ob.id = e1.id AND ob.id = ps.id "; //ผมงงกะส่วนนี้ของคุณมากเรอะ
|
ประวัติการแก้ไข 2013-02-08 12:25:12
|
|
|
|
Date :
2013-02-08 12:20:24 |
By :
Ex-[S]i[L]e[N]t |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับพี่
|
ประวัติการแก้ไข 2013-02-08 12:26:52
|
|
|
|
Date :
2013-02-08 12:24:49 |
By :
puldool |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|