如何使此代码按日期排序?

时间:2010-12-18 08:17:15

标签: php mysql

<?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`>&nbsp;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);
?>

3 个答案:

答案 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查询=)