HelpMe1985 Posted July 18, 2008 Share Posted July 18, 2008 hi i want to format the out put from my database in a table to 2 decimal places e.g. 6.70 ive found that this code dose what i want to do printf ("%01.2f", $variable); but im having trouble fitting it into my code within the table echo "<td><center>£" . $row['WeeklyCharge'] . "</td>"; how do i fit that in so WeeklyCharge will display in the table to two decimal places. Every time i try i get an error. Any help would be great or if anyone knows of a better way i could look at doing it? Link to comment https://forums.phpfreaks.com/topic/115505-solved-decimal-place-formating-within-a-table-help-please/ Share on other sites More sharing options...
Psycho Posted July 18, 2008 Share Posted July 18, 2008 echo "<td><center>£" . number_format($row['WeeklyCharge'], 2) . "</td>"; Link to comment https://forums.phpfreaks.com/topic/115505-solved-decimal-place-formating-within-a-table-help-please/#findComment-593799 Share on other sites More sharing options...
HelpMe1985 Posted July 18, 2008 Author Share Posted July 18, 2008 spot on thank you very much Link to comment https://forums.phpfreaks.com/topic/115505-solved-decimal-place-formating-within-a-table-help-please/#findComment-593801 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.