Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17
  1. #11
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Oh right, sorry.My mistake.

    Instead of:

    PHP Code:
    include('functions.php'); 
    It needs to be:

    PHP Code:
    include('includes/functions.php'); 
    James


    Connected to reality through a proxy server.

  2. #12
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Mr Macro View Post
    Oh right, sorry.My mistake.

    Instead of:

    PHP Code:
    include('functions.php'); 
    It needs to be:

    PHP Code:
    include('includes/functions.php'); 
    still dont work :S www.thebobbas.net/djpanel

  3. #13
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    What file are you getting the error on ?
    James


    Connected to reality through a proxy server.

  4. #14
    Join Date
    Oct 2006
    Location
    BUXTON
    Posts
    2,191
    Tokens
    0

    Latest Awards:

    Default

    pm'ed ...

  5. #15
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    PHP Code:
    <?php
    include("includes/functions.php");
    include(
    "includes/config.php");

    if(isset(
    $_SESSION['username']) && isset($_SESSION['password']) && $_SESSION['level']) {

    checkaccount($_SESSION[username]);


    $id $_GET['id'];

    $query mysql_query("DELETE FROM requests WHERE id = '$id'") or die('Could not delete request: '.mysql_error());

    echo(
    "<br /><center><strong>Request deleted!</strong> Please reload this page</center>");

    die();
    }
    ?>
    replace delreq.php with that.

    It should work


  6. #16
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Reina saves the day once again, nice one
    James


    Connected to reality through a proxy server.

  7. #17
    Join Date
    Jul 2006
    Location
    Athens
    Posts
    842
    Tokens
    0

    Default

    Thanks, Thats what i'm here for.

    Mr Macro
    I am PMing you.


Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •