我在数据库中有 2 个名为 details 的表并报告这两个表都有一个名为 ono(订单号)的公共字段我需要从两个表中检索特定订单号的数据并使用 php 在表中显示该数据。我只能显示单个表中的数据。
代码:
<?php
mysql_connect ("localhost", "root","") or die (mysql_error());
mysql_select_db ("name");
$term = $_POST['term'];
$sql = mysql_query("select * from details where details.ono='$term'");
while ($row = mysql_fetch_array($sql)){
echo "<fieldset>";
echo "<table width='1400' cellpadding='5' cellspacing='5' border='0'>";
echo "<tr><td>Patient Name: ".$row['details.pname']."</td><td>Order NO: ".$row['report.labid']."</td></tr>";
echo "<tr><td>Ph no: ".$row['phno']."</td><td>Age: ".$row['age']."</td></tr>";
echo "<tr><td>Ref doc: ".$row['rdoc']."</td><td>Received on: ".$row['Sdate']."</td></tr>";
echo "</table>";
echo "</fieldset>";
}
?>