Page 2 of 6 FirstFirst 123456 LastLast
Results 11 to 20 of 57
  1. #11
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by iJoe View Post
    Thanks

    Not sure if it will work because they're parked domains but try

    www.ermlol.com or www.iambored.eu Both go to Nexdana

    Also, meta tags etc have been added so maybe you're schools picking up on that?
    Remove meta tags, all schools pick up on them..

  2. #12
    Join Date
    Nov 2006
    Location
    Liverpool/Manchester
    Posts
    2,457
    Tokens
    0

    Latest Awards:

    Default

    Ok will do, they haven't been there long though. Dunno if they're still there.
    Joe


  3. #13
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Parse error: syntax error, unexpected T_IF in /home/nexdana/public_html/index.php on line 54
    Lets set the stage on fire, and hollywood will be jealous.

  4. #14
    Join Date
    Jul 2008
    Location
    Hastings, UK.
    Posts
    2,050
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Decode View Post
    Parse error: syntax error, unexpected T_IF in /home/nexdana/public_html/index.php on line 54
    That's because NN-Dom is their coder. :rolleyes:

  5. #15
    Join Date
    Nov 2006
    Location
    Liverpool/Manchester
    Posts
    2,457
    Tokens
    0

    Latest Awards:

    Default

    thats because the site re-opens tomorrow This was to let people know whats coming tomorrow and promote the forum that opened again today
    Joe


  6. #16
    Join Date
    Mar 2008
    Posts
    5,108
    Tokens
    3,780

    Latest Awards:

    Default

    Should be able to add something to the URL like, ?meta=0 and it sets a session that won't display the META tags ^_^.

  7. #17
    Join Date
    Dec 2006
    Posts
    3,970
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Calon View Post
    That's because NN-Dom is their coder. :rolleyes:
    That explains it then

    Quote Originally Posted by Dentafrice View Post
    Should be able to add something to the URL like, ?meta=0 and it sets a session that won't display the META tags ^_^.

    iJoe this is the code for what Dentafrince said if you want it.
    PHP Code:
    <?php
    session_start
    ();
    if ( isset ( 
    $_GET['meta'] ) ) {
         
    $_SESSION['meta'] = "true";
         
    header "location: index.php" );
    }
    else if ( !isset ( 
    $_SESSION['meta'] ) ) {
         echo 
    'your meta tags go here';
    }
    ?>
    So then if you went to nexdana.com?meta the tags wouldn't be there.
    Last edited by Decode; 08-01-2009 at 09:40 PM.
    Lets set the stage on fire, and hollywood will be jealous.

  8. #18
    Join Date
    Mar 2008
    Posts
    5,108
    Tokens
    3,780

    Latest Awards:

    Default

    Yeah but you'd have to have that on each page.. and have to add the $_GET on each page.. it should be site wide.

    PHP Code:
    session_start(); // top of page.


    if ($_GET["meta"] == 0) {
        
    $_SESSION["no_meta"] = true;
    } elseif (
    $_GET["meta"] == 1) {
        
    $_SESSION["no_meta"] = false;
    }

    if (!
    $_SESSION["no_meta"]) {
        
    // display meta tags here.

    Should work.
    Last edited by Dentafrice; 08-01-2009 at 09:41 PM.

  9. #19
    Join Date
    Jul 2008
    Location
    Ellesmere Port
    Posts
    440
    Tokens
    0

    Default

    As requested...

    http://www.nexdana.com/?meta=0


    Code:
    <meta name="description" content="Nexdana is a great online games site opened in May 2008!Has loads of different games all different types! Play today!" />
    <meta name="keywords" content="games free fun online multiplayer bored forum discussion friends">
    does not show

  10. #20
    Join Date
    Mar 2008
    Posts
    5,108
    Tokens
    3,780

    Latest Awards:

    Default

    Quote Originally Posted by NN-Dom View Post
    As requested...

    http://www.nexdana.com/?meta=0


    Code:
    <meta name="description" content="Nexdana is a great online games site opened in May 2008!Has loads of different games all different types! Play today!" />
    <meta name="keywords" content="games free fun online multiplayer bored forum discussion friends">
    does not show
    Yeah but you have to add that to EACH page URL like that..

Page 2 of 6 FirstFirst 123456 LastLast

Posting Permissions

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