我有兩個表;新聞和CATEGORIES。在NEWS表中,有CatID字段與類別中的CatID表匹配。我用下面的代碼得到categoryID,但我想要新聞的類別名稱,而不是ID。我怎樣才能從類別表中拉出來?匹配兩個不同表中的ID
<?php
$SQL = mysql_query("SELECT * FROM News WHERE Active = 1 ORDER BY DateEntered DESC");
while ($Result = mysql_fetch_array($SQL)) {
$CatID[] = $Result[CatID];
$NewsName[] = $Result[NewsName];
$NewsShortDesc[] = $Result[NewsShortDesc];
}
?>
<div class="toparticle">
<span class="section"><?=$CatID[0] ?> </span>
<span class="headline"><?=$NewsName[0] ?></span>
<p><?=$NewsShortDesc[0] ?></p>
</div>
你的問題似乎缺少一些文字,你可以請更新和添加你所得到的東西的缺失細節以及你想要做什麼? – 2011-01-13 01:17:15
謝謝你通知我。 – Eat 2011-01-13 01:21:59