Jump to content

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


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?

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.