I need to bring a PHP variable to another page, how can I do this?
The question is how do I do this.
My problem is I don't know how to do this.
I need to bring a PHP variable to another page, how can I do this?
The question is how do I do this.
My problem is I don't know how to do this.
You want to use a PHP session variable.
To store it:
<?php
session_start();
$_SESSION['variableName']=1;
?>
To retrieve it:
<?php
session_start();
echo "value=". $_SESSION['variableName'];
?>