heres my code <?php $result = mysql_query('select count(*) from v2links where `checked` = 1'); if (!$result) { die('Could not query:' . mysql_error()); } echo mysql_result($result, 0); ?> Code (markup): but it apears as "15968" how do i make it show "15,968" or "15.968"?? "," is better please help
its done now thanks i was going wrong by.. echo (number_format = mysql_result($result, 0), 0, '.', ',')); PHP: thanks again