Triggering Session Events

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
ryanwpatterson
Forum Newbie
Posts: 6
Joined: Wed Sep 17, 2003 10:10 am
Location: Austin, TX

Triggering Session Events

Post by ryanwpatterson »

Is there any way to trigger session level events in PHP? I'd like to store tracking data whenever a session is started without having to query the database on every page to see if the session ID has already been registered.
m3rajk
DevNet Resident
Posts: 1191
Joined: Mon Jun 02, 2003 3:37 pm

Post by m3rajk »

session_start();


for more info, search the manual


for something like this where you give no reference to the manual or any specific tyhing you're having an issue with, expect to be overlooked or told RTTM or RTTFM

there's a lot on sessions in it
Post Reply