php mail

Status
Not open for further replies.

bhupendra2895

New Member
Messages
554
Reaction score
20
Points
0
Hello, I am getting this error when I use your contact form.
Code:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/martix/public_html/email.php:10) in /home/martix/public_html/email.php on line 61
It means that you have typed something before session_start().Keep this function in the begining of file, so it may look like
PHP:
<?php
session_start();
//Then other contents of the file.


This is a programming problem and it has nothing to do with free hosting.
 
Status
Not open for further replies.
Top