Quote:
	
	
		| 
					Originally Posted by BigCashCrew
					
				 I just voted for her.  however, I did get this PHP error... 
 Warning: Cannot modify header information - headers already sent by (output started at /home/virtual/site25/fst/var/www/html/voting/index.php:7) in /home/virtual/site25/fst/var/www/html/voting/poll_cookie.php on line 21
 | 
	
 Thats caused by having a character or a space before a header function, which requires it to be empty before it. Example:
------------start of file
<? header( < ---- works
------------start of file
 <? header( <---- wont work, that space will give the error above
So whoever's it is, check line 7 of index.php and see if there are any characters that dont belong.