page1.php
$_SESSION['myvars_VARNAME'] = $varname;
the 'myvars_' is just for identification purposes, so avoid over-writing anthing that you might not want to.


page2.php
$varname =  $_SESSION['myvars_VARNAME'];


Valentin wrote:


Hi,
is any way to pass a $Var from one to other php pages without using <FORM>
and Cookies?

Thanks,









-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to