Page 3 of 3 FirstFirst 123
Results 21 to 26 of 26
  1. #21
    Join Date
    Mar 2008
    Posts
    5,108
    Tokens
    3,780

    Latest Awards:

    Default

    haha it's fine ;P

  2. #22
    Join Date
    Oct 2006
    Location
    Peterborough, UK
    Posts
    3,855
    Tokens
    216

    Latest Awards:

    Default

    Gonna go ahead and make that code strict compatible.

    PHP Code:
    <?php
    $page 
    = ( isset( $_GET['p'] ) === true and $_GET['p'] !== '' ) ? $_GET['p'] . '.php' 'home';
    ( !
    file_exists$page ) ) ? include '404.php' : include $page;
    ?>


    visit my internet web site on the internet
    http://dong.engineer/
    it is just videos by bill wurtz videos you have been warned

  3. #23
    Join Date
    Jul 2006
    Location
    devonshire
    Posts
    16,952
    Tokens
    0

    Latest Awards:

    Default

    +repped him for you rob my lad, beats 3 of yours anyway xx

  4. #24
    Join Date
    Mar 2008
    Posts
    5,108
    Tokens
    3,780

    Latest Awards:

    Default

    Quote Originally Posted by Jewish Bear View Post
    Gonna go ahead and make that code strict compatible.

    PHP Code:
    <?php
    $page 
    = ( isset( $_GET['p'] ) === true and $_GET['p'] !== '' ) ? $_GET['p'] . '.php' 'home';
    ( !
    file_exists$page ) ) ? include '404.php' : include $page;
    ?>
    You're not adding .php to home though.

    @Jake: thank ya babezz :]

  5. #25
    Join Date
    Oct 2006
    Posts
    12,405
    Tokens
    0

    Latest Awards:

    Default

    It's OK thanks. As long as it's working fine I don't wanna mess wth it lol

    Quote Originally Posted by Immenseman View Post
    +repped him for you rob my lad, beats 3 of yours anyway xx
    hahahaha nice one Jake +rep for you too .

  6. #26
    Join Date
    Oct 2006
    Location
    Peterborough, UK
    Posts
    3,855
    Tokens
    216

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice View Post
    You're not adding .php to home though.

    @Jake: thank ya babezz :]
    PHP Code:
     <?php
    $page 
    = ( isset( $_GET['p'] ) === true and $_GET['p'] !== '' ) ? $_GET['p'] . '.php' 'home.php';
    ( !
    file_exists$page ) ) ? include '404.php' : include $page;
    ?>


    visit my internet web site on the internet
    http://dong.engineer/
    it is just videos by bill wurtz videos you have been warned

Page 3 of 3 FirstFirst 123

Posting Permissions

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