View Single Post
  #2 (permalink)  
Old 06-24-03, 08:06 AM
Chris Boulton Chris Boulton is offline
Wannabe Coder
 
Join Date: Jun 2003
Location: Sydney, Australia
Posts: 208
Thanks: 0
Thanked 0 Times in 0 Posts
Change

PHP Code:

    setcookie("username,$username,time()+1209600"); 

     
setcookie("pass,$pass,time()+1209600"); 
to

PHP Code:

    setcookie("username",$username,time()+1209600); 

     
setcookie("pass",$pass,time()+1209600); 
Now it should work
__________________
Chris Boulton
SurfiOnline!
MyBulletinBoard
Reply With Quote