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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Login Problem.

  • 17-07-2013 3: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