我是聪明的“菜鸟”。我需要在我的 .tpl 文件之一中执行以下代码:
<? // SELECT sql query
$sql = "SELECT 'id' , 'title' FROM `forum_posts` WHERE bid = '1' ORDER BY 'date' DESC LIMIT 4";
// perform the query and store the result
$result = query($sql);
// if the $result contains at least one row
if ($result->num_rows > 0) {
// output data of each row from $result
while($row = $result->fetch_assoc()) {
echo '<tr>
<td><a href="http://www.site.com/forum.php?topic='. $row['id']. '">'. $row['title']. '</a> </td>
</tr> ';
}
}
else {
echo 'No news';
}
?>
我已经尝试了 3 个小时,在网上冲浪,但没有成功。请帮忙!