<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("dbsql", $con);
$offset = 0;
$result = mysql_query ("SELECT * FROM testimonial where approved='Yes' limit $offset, 10");
echo "<table border='0'>
<tr><font color='#000099' style='font-size:18px; margin-left:200px;'>Recently Post</font></tr>
<tr>
<th>From</th>
<th width=`400px`> Review</th>
<th>Date</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['full_name'] . "</td>";
echo "<td>" . $row['review'] . "</td>";
echo "<td>" . $row['date'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
答案 0 :(得分:2)
将您的SQL更改为:
SELECT * FROM testimonial where approved='Yes' ORDER BY date LIMIT $offset, 10
^^^^^^^^^^^^^
答案 1 :(得分:2)
MySQL有一个ORDER BY内置函数。
$result = mysql_query ("SELECT * FROM testimonial where approved='Yes' ORDER BY date LIMIT $offset, 10");
答案 2 :(得分:1)
只需将ORDER BY date
添加到您的SQL查询=)