WatsonN Posted October 6, 2010 Share Posted October 6, 2010 In my login form I'm getting the error Notice: Use of undefined constant Errors - assumed 'Errors' in /home/content/n/a/t/nathanwatson/html/admin/YBK/post.php on line 91 Warning: Cannot modify header information - headers already sent by (output started at /home/content/n/a/t/nathanwatson/html/admin/YBK/post.php:91) in /home/content/n/a/t/nathanwatson/html/admin/YBK/post.php on line 91 Warning: Cannot modify header information - headers already sent by (output started at /home/content/n/a/t/nathanwatson/html/admin/YBK/post.php:91) in /home/content/n/a/t/nathanwatson/html/admin/YBK/post.php on line 92 //if the name exists it gives an error if ($check2 != 0) { //Line 85 $error="<span style="; $error .="color:red"; $error .=">"; $error .= "Sorry, the username is already in use."; $error .="</span>"; setcookie(Errors, $error, time()+20); //Line 91 header('Location: /YBK/'); //Line 92 exit; } Link to comment https://forums.phpfreaks.com/topic/215253-login-form-issue/ Share on other sites More sharing options...
WatsonN Posted October 6, 2010 Author Share Posted October 6, 2010 Fixed change setcookie(Errors, $error, time()+20); to setcookie('Errors', $error, time()+20); Link to comment https://forums.phpfreaks.com/topic/215253-login-form-issue/#findComment-1119461 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.