Hmm, I am having a problem with this in my PHP code.
$qbd = "SELECT UNIX_TIMESTAMP(birth) FROM mbuser
WHERE username='$user' ";
$rbd = mysql_query($qbd) or die("Could not execute query");
echo Mysql_num_rows($rbd);
$abd = mysql_fetch_array($rbd) or die("Could not fetch array");
echo "$adb[birth]";
It is returing one row, but the $adb[birth] is empty, all though when I did it from the command line it work. Any one know why?