mig35 comments on their tutorials


profile / submitted / saved / comments / tutorial comments
RSS feed
ellisglOctober 24, 2007
view tutorial

Ok - this is the super basic way of setting a session, but here's a more secure way. I have even more secure session stuff for login stuff that deals with salts.

session_start(); // Start the session

// Simple protection of session attacks.
if(!isset($_SESSION['secured']))
{
session_regenerate_id();
$_SESSION['secured'] = 1;
}

mig35September 17, 2007
view tutorial

well, the source code includes comments to walk you through the code. I thought that would be helpful.

zachholmanSeptember 16, 2007
creator and administrator
view tutorial

This isn't really a tutorial.

rameshkpm1984September 03, 2007
view tutorial

rasas

rameshkpm1984August 31, 2007
view tutorial

eqwqw