Hi.
       while($row = mysql_fetch_array($qry_result)){
       $price_to_show=$row['price'];
       number_format($price_to_show, 0, ',', ' ');
       echo $price_to_show;
Why doesnt the above give the space separator? It outputs the same as before the number format, what is wrong here?
Thanks