Jump to content

How do I get this variable to that page?


anevins

Recommended Posts

SOLVED

 

I want to use a variable I defined on another page, but I don't know how.

 

Here's the original page with the variable:

cart.php

$total += $qty*$row['price'];

 

Here's the new page new page without the variable:

checkout.php

//I want the value $total onto this page

 

Thanks

Link to comment
Share on other sites

You need to use sessions.

 

In all scripts where you want to use sessions, put

<?php
session_start();
?>

at the start of the script before any output is generated.

 

In the original page, you need to created the session variable:

<?php
$_SESSION['total'] = $total;
?>

 

On the page where you want to get that value:

<?php
$total = $_SESSION['total'];
?>

 

Ken

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.