I'm running a PTC website. I want to show the last member registered on my website. I tried the following query but nothing is shown on the page;
<?
$mem = mysql_query("SELECT username FROM tb_users ORDER BY id DESC LIMIT 1");
?>
New Member:
<? echo $mem; ?>