Session_onEnd in PHP..?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mubashar
Forum Newbie
Posts: 1
Joined: Fri Aug 08, 2003 6:29 am

Session_onEnd in PHP..?

Post by mubashar »

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
User avatar
skateis2s
Forum Commoner
Posts: 37
Joined: Fri Aug 08, 2003 7:22 am
Location: colorado

If i understand

Post by skateis2s »

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");
?>
Post Reply