Elsewhere on a form page I am declaring a variable
*************** *************** *
session_start() ;
$_SESSION['testvar'] = "sometext";
At the top of the page that will process the form code I have this line.
session_start() ;
$testppp=$_SESS ION['testvar'];
echo $testppp;
*************** *************** *
But nothing is echoed. What am I missing?
Garry Jones
Sweden
*************** *************** *
session_start() ;
$_SESSION['testvar'] = "sometext";
At the top of the page that will process the form code I have this line.
session_start() ;
$testppp=$_SESS ION['testvar'];
echo $testppp;
*************** *************** *
But nothing is echoed. What am I missing?
Garry Jones
Sweden
Comment