Hi,

I am using this code to display data to the screen:

PHP Code:
 mysql_connect($db_host,$db_user,$db_pass);
mysql_select_db($db_name) or die("Unable to select database.");
              
$data mysql_query("SELECT * FROM $table");

            while(
$info mysql_fetch_array$data,MYSQL_NUM )){
     
             
$comma_separated implode("",  $info);
             echo 
$comma_separated;
          
$comma_separated explode(" ",  $comma_separated);
 echo 
$comma_separated;
             } 
However, for some reason instead of putting a " " between entries it puts

Array
1Jeff13Male12/04/84Array2Mike17Male05/06/1990Array3Joann17Female26/06/1982Array4Rachel14Female23/07/1980Array5Robert13Male23/06/1990Array6Sarah14Female21/4/1990Array7evaneeeArray8fionafffArray
Thanks,

Nightwalker