Parse error

  1. #1
    koryusai kun is offline Newbie

    Parse error

    can someone help me the this script

    error message: Parse error: parse error, unexpected '{' in \\192.168.1.16\webfiles\files\2006-6\894244\php\login3.php on line 3

    login3.php

    <?php
    session_start();
    if(!isset($_SESSION["username"]){
    header('Location: login.php');
    exit;
    }
    ?>


  2. #2
    spiral is offline Newbie
    Tackle the Web with $5.99 .COM's from Go Daddy!
    I think you're missing a closing bracket just before the {

    try

    if(!isset($_SESSION["username"])){

    Hope that works.

+ Reply to Thread