Admin Panel

Results 1 to 7 of 7
  1. #1
    Enthusiast Self is offline
    MemberRank
    Mar 2009 Join Date
    In a Cave with a Pack of Wolves.Location
    49Posts

    Admin Panel

    Hey I got a problem every time I open my admin panel I get This error Message

    Parse error: parse error, expecting `']'' in C:\xampp\htdocs\AdminPanel\functions.php on line 17

    and I have no Idea what it means.
    Well I edited the functions.php to my sql stuff and I still get this error.
    Any Idea what it means?


  2. #2
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Admin Panel

    it means your missing a ] in your script on line 17

  3. #3
    Account Upgraded | Title Enabled! sayuta is offline
    MemberRank
    Jan 2007 Join Date
    The NetherlandsLocation
    205Posts

    Re: Admin Panel

    like in ;

    $_POST["submit";

    missing a ] ;)

  4. #4
    Enthusiast Self is offline
    MemberRank
    Mar 2009 Join Date
    In a Cave with a Pack of Wolves.Location
    49Posts

    Re: Admin Panel

    Well I got this on line 17.

    $resource = odbc_connect("Driver={Blah\SQLEXPRESS};Server={$_MSSQL[IPHere]}; Database={$_MSSQL[GunzDB]}", $_MSSQL[sa], $_MSSQL[passhere]) or die(odbc_errormsg());

    And I dont see what is wrong.
    Please Tell me were it is missing.

  5. #5
    Infraction Banned MicroManiacs is offline
    MemberRank
    Apr 2009 Join Date
    326Posts

    Re: Admin Panel

    It is a bad configuration probably !

  6. #6
    Account Upgraded | Title Enabled! sayuta is offline
    MemberRank
    Jan 2007 Join Date
    The NetherlandsLocation
    205Posts

    Re: Admin Panel

    use mssql.

    odbc sucks though o.o

    PHP Code:
    $mssql_host "";
    $mssql_user "sa";
    $mssql_pass "";
    $mssql_db "GunZDB";

    mssql_connect($mssql_host,$mssql_user,$mssql_pass) or die("Error");
    mssql_select_db($mssql_db) or die("Database Error"); 

  7. #7
    Enthusiast Self is offline
    MemberRank
    Mar 2009 Join Date
    In a Cave with a Pack of Wolves.Location
    49Posts

    Re: Admin Panel

    thanks a lot Sayuta Worked Well!



Advertisement