Are there any equivalent functions in PHP like Asp's Session_onStart and Session_onEnd functions?
If we want to set some value on Session end what function in PHP can help us.
Thanks,
Mubashar
Session_onEnd in PHP..?
Moderator: General Moderators
If i understand
if I read you right....
PHP start session is....
<? session_start(); ?> - thats to start a session
<? session_destroy(); ?> - that would kill all sessions
to give a session value
<?
session_register("value");
?>
PHP start session is....
<? session_start(); ?> - thats to start a session
<? session_destroy(); ?> - that would kill all sessions
to give a session value
<?
session_register("value");
?>