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>
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>