我正在尝试从公司表中显示公司名称,然后从另一个表中循环输出新闻。这两个表已连接。这意味着:我只想从连接中的一个表中挑选一行,并从连接中的另一个表中循环出数据。这可能吗?我下面的代码仅在我的循环中的新闻表中显示三分之二的帖子。
谢谢!
$sql = "SELECT
newID, newTitle, newSummary, newDate,
comID, comName, comImageThumb
FROM
tblNews a RIGHT JOIN tblCompanies b
ON a.newCompanyID = b.comID
ORDER BY newDate DESC";
// Get company name and display
$companyData = mysql_fetch_assoc($result);
$comName = $companyData['comName'];
echo "<a href='#' class='name'>$comName</a>";
// Looping news
while($news = mysql_fetch_assoc($result)) {
// Display news posts
$newTitle = $news['newTitle'];
echo $newTitle;
}