using session variable - Joomla! Forum - community, help and support
i assigning value in session variable way
$osession = jfactory::getsession();
$osession->set('var','values');
i can access variable 'var' value when logout user 'var' value lost !.
how can use session store values in variables throughout site until user closes browser?? other efficient ways store values use 1 page another..?
$osession = jfactory::getsession();
$osession->set('var','values');
i can access variable 'var' value when logout user 'var' value lost !.
how can use session store values in variables throughout site until user closes browser?? other efficient ways store values use 1 page another..?
cookies, use cookies!
client (javascript) or server (php), whether user logged in or not. when using cookies users programatically remove/destroy variables if login based can persist information.
client (javascript) or server (php), whether user logged in or not. when using cookies users programatically remove/destroy variables if login based can persist information.
Comments
Post a Comment