hippytyre Posted February 11, 2011 Share Posted February 11, 2011 Hello, My first post on this forum, sorry to make it a question.... I have a problem with rounding up VAT on my website since the VAT increased in the UK to 20% I'm using this line of code. <? echo number_format(round($msqr[5]*1.20,0),2,'.',''); ?> On my stock system at work it rounds up £52.76 + 20% to £64.00 but on my website the code above results in £63.00. I've done some googling and I think ceil() might be what I need but I'm unsure how to add it. Thanks. Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 11, 2011 Share Posted February 11, 2011 I think ceil() might be what I need but I'm unsure how to add it. Have you tried? Quote Link to comment Share on other sites More sharing options...
Maq Posted February 11, 2011 Share Posted February 11, 2011 *Side Note: Don't use short tags use the full <?php syntax. 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.