In my header.php how do I show a banner on every page other than the home page?

Discussion in 'HTML & Website Design' started by vwdforum, Dec 13, 2011.

  1. #1
    Hello, can anyone help, I need to know what code to add that checks to see if its the website home page, and if its not shows a banner.

    Thanks
     
    vwdforum, Dec 13, 2011 IP
  2. vwdforum

    vwdforum Well-Known Member

    Messages:
    782
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    110
    #2
    worked it out, thought I'd share below

    To show on every page apart from home use the below

    <?php
    $homepage = "/";
    $currentpage = $_SERVER['REQUEST_URI'];
    if($homepage<>$currentpage) {
    echo 'Adcode here' ;
    }
    ?>

    use the below for the code to appear on the home page only

    <?php
    $homepage = "/";
    $currentpage = $_SERVER['REQUEST_URI'];
    if($homepage==$currentpage) {
    echo 'Adcode here' ;
    }
    ?>
     
    vwdforum, Dec 13, 2011 IP
  3. iComEric

    iComEric Greenhorn

    Messages:
    56
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #3
    Thanks for the code
     
    iComEric, Dec 19, 2011 IP