Voting

: min(three, two)?
(Example: nine)

The Note You're Voting On

Praveen V
12 years ago
If you want to change the session id on each log in, make sure to use session_regenerate_id(true) during the log in process.

<?php
session_start
();
session_regenerate_id(true);
?>

[Edited by moderator (googleguy at php dot net)]

<< Back to user notes page

To Top