as i said above, i know how the basic of both cookies and session worksa:
for an instant if you a match was made in db:
PHP Code:
$row = $db->fetch_array("SELECT * FROM user WHERE user_auth='$username' AND user_first_name='$first_name'");
if($row) {
$_SESSION['username'] = $row[0]
$_SESSION['firstname'] = $row[1]
}
like that, but well thats what i know about session.
and not pretty much the same about cookie's so if you got something more advacne than that, it would help
thanks for all the reply's tho
