PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
$qryNews = "SELECT * FROM tbl_news WHERE n_show='1' order by n_date";
$resNews = mysql_query($qryNews);
$cntNews = mysql_num_rows($resNews);
what is hapening from the above code is:
its showing the news order by date and news posted on last date comes in the end and now i want to show news in reverce order mening news posted at the end will come at 1st.