Jump to content

Warning: session_start() [function.session-start]: Cannot send session cookie -


colap

Recommended Posts

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at index.php:1) in index.php on line 2

 

<?php
session_start();
$errorMessage = '';

if($submitted_by_user=$_POST['submitted_by_user']=='yes')
{
    echo "User: ".$submitted_by_user;
    include("database_connector.php");
    $user_id = $_POST['user_id'];
    //$password = $_POST['password'];
    $cmd=mysql_query("select * from student_personal where reg_no='$user_id'");
    if(!$cmd)

Your file has been saved as a UTF-8 encoded file and the BOM (Byte Order Mark) characters that your editor placed at the start of the file is the content being output on line 1 of index.php (see the error message) that is preventing the headers from working.

 

Save the file as an ANSI/ASCII file or if you must save it as UTF-8, save it without the BOM characters.

Your file has been saved as a UTF-8 encoded file and the BOM (Byte Order Mark) characters that your editor placed at the start of the file is the content being output on line 1 of index.php (see the error message) that is preventing the headers from working.

 

Save the file as an ANSI/ASCII file or if you must save it as UTF-8, save it without the BOM characters.

How would i save it as an ANSI/ASCII file?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.