how can i use session on my PHP page?
Printable View
how can i use session on my PHP page?
add this as a header to your document.
session_start();
and then just reference your sessions like this..
$_SESSION['whatever_name']->$variable = 8;
$_SESSION['whatever_name']->$var2 = 7;
it would just beQuote:
Originally posted by TheGoldenShogun
add this as a header to your document.
session_start();
and then just reference your sessions like this..
$_SESSION['whatever_name']->$variable = 8;
$_SESSION['whatever_name']->$var2 = 7;
$_SESSION['whatever_name'] = 8;