รายละเอียดของการตอบ ::
ขอโทษครับลืม On อันดับแรกต้อง join table ก่อนครับ
<font class="detailDesc"><font class="css_code"> <?
$strSQL = "Select p.product_name,s.stock_name from Product as p Left jon Stock as s On(p.product_id=c.product_id) Left join Components as c On(c.stock_id = s.stock_id)" ;
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<br />
<table width="100%" border="1" align="center">
<tr>
<th width="163" align="left">ชื่อสินค้า</th>
<th width="232" align="left">stock_name</th>
<th width="64"> <div align="center">ลบ </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td align="left"><?= $objResult["product_id"];?></td>
<td align="left"><?=$objResult["product_name"];?></td>
<td align="left"><?=$objResult["stock_name"];?></td>
<td align="center"><a href="JavaScript:if(confirm('Confirm Delete?')==true){window.location='component_scp_delete.php?id=<?=$objResult["component_id"];?>';}">ลบข้อมูล</a></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</font></font>