Jump to content

Add GST automatically


vikingbear

Recommended Posts

Hi, I have a database field containing a number eg.  3.75, I want to repeat the field in the next column and add 10% (gst) how would I code that?

 

<?php echo $row_Recordset1['Price_75mm']; ?> | <?php echo $row_Recordset1['Price_75mm']; ?>

 

Any input greatly appreciated!

 

Regards, ken

 

 

Link to comment
https://forums.phpfreaks.com/topic/197516-add-gst-automatically/
Share on other sites

  • 1 month later...

<?php echo round($row_Recordset1['Price_75mm']*1.1,2); ?> | <?php echo round($row_Recordset1['Price_75mm']*1.1,2); ?>

 

He said second column :P

 

<?php echo $row_Recordset1['Price_75mm']; ?> | <?php echo round($row_Recordset1['Price_75mm']*1.1,2); ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.