Im trying to get an array saved in a cookie, I have this snippet so far..
<?
if (newuser == yes) {
$user_reg[0]= $username;
$user_reg[1]= $password;
$user_reg[2]= $fullname;
$user_reg[3]= $email;
$user_reg[4]= $age;
setcookie ("user_reg" , $user_reg, time() + 360 * 86400);
$done_message = "thankyou, $user_reg[0].";
}else{
$done_message = $sign_form;
}
?>
$username and the others vars are coming from a form submitted.
did I write this ok?
is there a limit to how much I can save in the array ?
Thanx
amd
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]