我的数据库中有2个表。 首先叫做birou并且有:
id name desk(3列)
第二个叫做flux_receptie,有:
id motiv nume_client reg_date status_solutionare status_preluare ora_preluare ora_rezolvare operator_preluare operator_solutionare(10列)
我需要一个必须显示的回显:客户端ID,nume_client和桌面值(由用户分配给自己)。
到目前为止,我的代码正在运行,但我需要添加来自birou的桌面值:
$rst=mysql_query("select * from flux_receptie where status_preluare ='PRELUAT' order by ora_preluare desc limit 3",$link);
while($res = mysql_fetch_array($rst))
if(($res)==TRUE)
echo "<br /><center>
<table border='1' class='fixed'>
<td><center>$res[0]</center></td><br /><br /><br /><br />
<td><center>$res[2]</center></td><br /><br /><br /><br />
<td><center>➤ BIROUL **VALUE DESK HERE**</center></td>
</center>";
?>
我希望你能理解我在这里想说的话。我需要结合2个表来显示3个简单值(2已经显示,但我需要桌面值)。
任何人都可以帮助我吗?我用谷歌搜索,但我真的不明白如何结合它们。