> What is the best approach to the unique page ID? I thought I would store the > dept. mgrs. email address and the session ID in a db, and use the session ID in > the URL. Do I even need the mgr's email address? Is another approach better? > What have you used?
I'd concatenate the employee's email and manager's email, and then use an MD5 hash of it as the unique string. i.e: $unique_id = md5 ( $employee_email . $manager_email ); For more info on what MD5 is, see http://us2.php.net/manual/en/function.md5.php Cheers, Al -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php