I want to get the latest entry from my database in php, I've tried the but still it is returning the first entry of the database
- I've tried this line
Could it be from my database arrangement
<?php $sql = "SELECT * FROM comments ORDER BY 'id' DESC LIMIT 3"; $result = mysql_query($sql); ?>