Jump to content

moving varibles between pages


Madmoggie

Recommended Posts

hey

i have 2 pages, function.inc.php and checkout.php.

 

in functions.inc.php there is a variable called $total.

 

i need this variable to display in the checkout.php page

what code do i need to enter to display it???

 

many thanks

 

<table>

<tr>

<table border = 2 >

<tr><th>Total</th><th>Postage and Packaging</th><th>Grand Total</th></tr>

<td>???$total???</td>

<td>£5.95</td>

<td>(???$total??? + £5.95)</td>

</table>

Link to comment
https://forums.phpfreaks.com/topic/188445-moving-varibles-between-pages/
Share on other sites

Your setup is completly wrong and actually should be:

 

<table>
<tr>
<table border = 2 >
<tr><th>Total</th><th>Postage and Packaging</th><th>Grand Total</th></tr>
<td><?php print get_subtotal(); ?></td>
<td>+ £5.95 (VAT)</td>
<td><?php print get_total(5.95); ?></td>
</table>

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.