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. Link to comment https://forums.phpfreaks.com/topic/227341-vat-roundup/ 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? Link to comment https://forums.phpfreaks.com/topic/227341-vat-roundup/#findComment-1172883 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. Link to comment https://forums.phpfreaks.com/topic/227341-vat-roundup/#findComment-1172955 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.