Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Login Problem.

  • 17-07-2013 04:09PM
    #1
    Registered Users, Registered Users 2 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