Madmoggie Posted January 14, 2010 Share Posted January 14, 2010 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> Quote Link to comment https://forums.phpfreaks.com/topic/188445-moving-varibles-between-pages/ Share on other sites More sharing options...
JAY6390 Posted January 14, 2010 Share Posted January 14, 2010 It depends really. can you include the file? If not use sessions and save the value to a session variable, then load that with your checkout.php Quote Link to comment https://forums.phpfreaks.com/topic/188445-moving-varibles-between-pages/#findComment-994835 Share on other sites More sharing options...
Rizla Posted January 14, 2010 Share Posted January 14, 2010 include the functions page inside the checkout page this way the $total value will already be in the checkout page because of the include you made. Quote Link to comment https://forums.phpfreaks.com/topic/188445-moving-varibles-between-pages/#findComment-994853 Share on other sites More sharing options...
ignace Posted January 14, 2010 Share Posted January 14, 2010 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> Quote Link to comment https://forums.phpfreaks.com/topic/188445-moving-varibles-between-pages/#findComment-994949 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.