Question
cooking up a php echo
Hi,
I have a mysql recordset that includes
'price_prd ' (item price - eg 14.95)
and
'amount_tax' (tax percentage to add - eg 17.5)
how can I show/ echo
<?php echo $row_rsPrd['price_prd']; ?> x 1.<?php echo $row_rsPrd[amount_tax]; ?>
price x 1.tax
...with only 2 deimal places?
much appreciated if anyone has the solution!
