Skip to content Skip to sidebar Skip to footer

PHP/MYSQL Show Database

how do I make this display the most recent users first?

Solution 1:

change your query to:

// select record from mysql 
$sql="SELECT * FROM $tbl_name order by id desc";

Post a Comment for "PHP/MYSQL Show Database"