Php 订单日期查询

Php 订单日期查询,php,mysql,Php,Mysql,我使用以下代码显示从数据库中获取的事件详细信息 <form name="event_form" id="event_form" action="" method="post" enctype="application/x-www-form-urlencoded"> <table width="765" border="0" align="left" cellpadding="0" cellspacing="0" > <tr&

我使用以下代码显示从数据库中获取的事件详细信息

<form name="event_form" id="event_form" action="" method="post"  enctype="application/x-www-form-urlencoded">
          <table width="765" border="0" align="left" cellpadding="0" cellspacing="0" >
          <tr>
          <td>
          <table width="765" border="0" align="left" cellpadding="0" cellspacing="0" id="results" class="fronttbl">
          <tr></tr>
          <?php
            $select = "SELECT * FROM `tbl_event`";
            $select_event = mysql_query($select);
            $select_num = mysql_num_rows($select_event);
            if($select_num > 0)
            {
                while($fetch = mysql_fetch_array($select_event))
                    {
                        $feventid=$fetch['intEventid'];
                        $feventname=stripslashes(ucfirst($fetch['varEventname']));
                        $fDate=$fetch['varDate'];
                        $seperate=explode("-", $fDate );
                        $year=$seperate[0];
                        $month=$seperate[1];
                        $date=$seperate[2];
                        $fchiefguest=stripslashes(nl2br($fetch['varChiefguest']));
                        $fvenue=stripslashes($fetch['varVenue']);
                        $ftime=stripslashes($fetch['varTime']);
                        $feventdetails=stripslashes($fetch['varEventdetails']);
                        echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
                    ?>
                    <tr>
            <td>

            <table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="30%" height="30" valign="top"><strong>Name of the event:</strong></td>
    <td width="70%" height="30" valign="top"><?php echo $feventname; ?></td>
  </tr>
  <tr>
    <td height="30" valign="top"><strong>Date of the event to be held:</strong></td>
    <td height="30" valign="top"><?php echo $date.'-'.$month.'-'.$year; ?></td>
  </tr>
  <tr>
    <td height="30" valign="top"><strong>Time of the Event:</strong></td>
    <td height="30" valign="top"><?php echo $ftime; ?></td>
  </tr>
  <tr>
    <td height="30" valign="top"><strong>Venue of the event:</strong></td>
    <td height="30" valign="top"><?php echo $fvenue; ?></td>
  </tr>
  <tr>
    <td height="30" valign="top"><strong>Name of the Chief Guest:</strong></td>
    <td height="30" valign="top"><?php echo $fchiefguest; ?></td>
  </tr>
   <tr>
    <td height="30" valign="top"><strong>Event Details:</strong></td>
    <td height="30" valign="top"><?php echo $feventdetails; ?></td>
  </tr>

</table>
<p style="border-bottom:1px dotted #CCCCCC;"></p>
            </td></tr>



    <?php               }

                }




          ?>
          </table>
          </td>
          </tr>
          </table>
          <div id="pageNavPosition"></div>
          </form>

活动名称:
活动举行日期:
活动时间:
活动地点:
主宾姓名:
活动详情:

我的数据库表中有日期字段,输入将按以下格式保存
2012-03-01

我需要我的页面在前端按最近日期/月份/年份显示事件顺序。例如,今天的活动也应首先显示。我该怎么做呢?

使用(…这就是你的意思吗)

将查询更改为:

SELECT *
FROM `tbl_event`
ORDER BY varDate DESC

据我所知,将此功能用于前端:

function changeFormat( $date ){
   $exp_date = explode('-', $date);
   return $exp_date[2] . '-'.$exp_date[1].'-'.$exp_date[0];
}
示例:
echo changeFormat('2012-12-01')
将返回
01-12-2012
,并将其应用于您希望显示日期的while循环中