I get the following warning message when a form is submitted.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/intechsl/public_html/petition/processor.php:3) in /home/intechsl/public_html/petition/processor.php on line 4
For all intensive purposes, the information is sent to the nominated email, but I'm concerned there may be another problem.
Can anyone help me??
Cheers,
Graham
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Usually due to some extra or missing characters but can also be that the session_start() function is late in the processor.php file. It's hard to know without seeing the file but you might try and move this function to the top of the file just after the <?php line.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I get the following warning message when a form is submitted.
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/intechsl/public_html/petition/processor.php:3) in /home/intechsl/public_html/petition/processor.php on line 4
For all intensive purposes, the information is sent to the nominated email, but I'm concerned there may be another problem.
Can anyone help me??
Cheers,
Graham
Usually due to some extra or missing characters but can also be that the session_start() function is late in the processor.php file. It's hard to know without seeing the file but you might try and move this function to the top of the file just after the <?php line.