this is my first time using ob_start, so im not sure how to use it.
my code right now
***
if(($postlogin == $adminlogin) && ($postpassword == $adminpassword)){
ob_start();
setcookie ("adminlogin", "$postlogin", "3600");
setcookie ("adminpass", "$postpassword", "3600");
ob_end_flush();
}
****
According to php.net, this should work, but it doesnt.Am i really just that dumb or what?
