Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Login Problem.

Options
  • 17-07-2013 4:09pm
    #1
    Registered Users Posts: 1,298 ✭✭✭


    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /Applications/XAMPP/xamppfiles/htdocs/cart/admin/admin_login.php:2) in /Applications/XAMPP/xamppfiles/htdocs/cart/admin/admin_login.php on line 4

    Thats the error

    This is the code


    <?php

    session_start();

    if(isset($_SESSION)){
    header("location: index.php");
    exit();
    }
    ?>

    <?php
    if(isset($_POST) && isset($_POST)){

    $manager = preg_replace('#[^A-Za-z0-9]#i', '' , $_SESSION);
    $password = preg_replace('#[^A-Za-z0-9]#i', '' , $_SESSION);

    include '../storescripts/mysql_connect.php';

    $sql = mysql_query('SELECT id FROM admin WHERE username="$manager" AND password="$password" LIMIT 1');

    $existCount = mysql_num_rows($sql);
    if($existCount == 1){

    while($row = mysql_fetch_array($sql)){
    $id = $row;
    }

    $_SESSION = $id;
    $_SESSION = $manager;
    $_SESSION = $password;
    header("location: index.php");
    exit();
    }else{
    echo'That information is incorrect, try again <a href="index.php"> Click Here</a>';
    exit();
    }


    }

    ?>


Comments

Advertisement