I'm trying to output a SELECT with comma or even space but I can't design the database structure to use commas och space.
Database:
Cash Varchar 255 Decimals 0 and Default 50000 (I want it to be 50 000 or 50,000)
PHP:
$id = $_SESSION['user_id'];
$get = mysql_query('SELECT * FROM `users` WHERE `id` = '.$id.'')
<?php echo $get_row['cash']; ?>