1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Simple PHP Help

Discussion in 'PHP' started by www.techdo.com, May 18, 2009.

  1. #1
    i have this page check

    
    if ($curPageName != "catalogo.php") {
    echo ("<script type=\"text/javascript\" src=\"js/swfobject.js\"></script>");
    echo ("\n");
    echo ("<script type=\"text/javascript\" src=\"js/swfobject_modified.js\"></script>");
    echo ("\n");
    }
    
    Code (markup):
    i need this instead:

    if page is not catalogo.php or contattaci.php


    how to write it ?

    thank you


    .
     
    www.techdo.com, May 18, 2009 IP
  2. NateJ

    NateJ Active Member

    Messages:
    240
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #2
    if ($curPageName != "catalogo.php" || $curPageName != "contattaci.php") {
    echo ("<script type=\"text/javascript\" src=\"js/swfobject.js\"></script>");
    echo ("\n");
    echo ("<script type=\"text/javascript\" src=\"js/swfobject_modified.js\"></script>");
    echo ("\n");
    }
    PHP:
    There you go :)
     
    NateJ, May 18, 2009 IP