I need to add commas to my data..
Somehow I'm missing the mark on getting this done...
Currently out putting building info with: <td><?php echo $row_DetailRS1['BuildingSize']; ?> </td> I've use some variations of number_format($number); without results. Should be easy but I'm not getting the results.

Oh, and yes I'm a newbie to php.. really like it though.

Very simple to correct this. I didn't see the missing '
:-)

<? $number = $row_DetailRS1['BuildingSize']; 
   echo 'Message display: '.number_format($number, 0, '.', ',').'<br>'; ?>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.