Please help as I am a newbie🙂
Below appears on web page;
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/content/84/8808484/html/contact.php:11) in /home/content/84/8808484/html/contact.php on line 168
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/content/84/8808484/html/contact.php:11) in /home/content/84/8808484/html/contact.php on line 168
The code below starting with Line 166;
Line 166<?php
Line 168session_start();
if( isset($_POST['submit'])) {
$name = (isset($POST['name']) ? trim($POST['name']) : '');
$email = (isset($POST['email']) ? trim($POST['email']) : '');
$phone = (isset($POST['phone']) ? trim($POST['phone']) : '');
$comments = (isset($POST['comments']) ? trim($POST['comments']) : '');