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? Quote Link to comment 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>"; Quote Link to comment Share on other sites More sharing options...
HelpMe1985 Posted July 18, 2008 Author Share Posted July 18, 2008 spot on thank you very much Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.