//Table One {news}
Id1 | subject1 | url1 | source1
//Table Two {blog_news}
order_id | type | id1 | id
//Table Three {blog}
id | name | subject | url
//SQL query
SELCET nf.*, fnb.*, b.id, b.name, b.subject, b.url FROM news AS nf JOIN blog_news AS fnb ON nf.id1=fnb.id1 JOIN blog AS b ON fnb.id=b.id
//Display Code
if(($i = 0; $i <= 5; ++$i)&&(fnb.type' ==1)){
//Order the result by 'order_id'
//Table Display Code
<table>
<tr>
<td width='250px' valign='middle' align='left'>
<font size='-2'>
<a herf='” . $_GET['b.url'] . “'>
<b>” . $_GET ['b.subject'] . “</b>
</a>
</font>
</td>
<td width='100px' valign='middle' align='right'>
<font size='-2'>
<a herf='” . $_GET['b.url'] . “'>
<b>” . $_GET ['b.name'] . “</b>
</a>
</font>
</td>
</tr>
</table>
}endif
我想要完成的是将三个数据库表连接在一起,并使用类似于{//display}
代码部分的代码在两个区域中显示结果。
我尝试了可能不同的方法来完成这项任务。
我尝试在 php 中使用 while 循环来显示结果,并且mysql_fetch_error()
在 while 循环开始之前收到了一个。我的目标是让每张桌子都按order_id
顺序DESC
排列。