Why a mistake?
setcookie("auto", "yes", time()+9999999); setcookie("email", "email123", time()+9999999); setcookie("password", "password123", time()+9999999); setcookie("id", "id123", time()+9999999); setcookie ("TestCookie","TestCookie");
This code gives errors
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\qb1.cam\www\Test.php:4) in Z:\home\qb1.cam\www\Test.php on line 10
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\qb1.cam\www\Test.php:4) in Z:\home\qb1.cam\www\Test.php on line 11
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\qb1.cam\www\Test.php:4) in Z:\home\qb1.cam\www\Test.php on line 12
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\qb1.cam\www\Test.php:4) in Z:\home\qb1.cam\www\Test.php on line 13
Warning: Cannot modify header information - headers already sent by (output started at Z:\home\qb1.cam\www\Test.php:4) in Z:\home\qb1.cam\www\Test.php on line 16
Why