PHP if statement - select two different get variables?

Posted by arsoneffect on Stack Overflow See other posts from Stack Overflow or by arsoneffect
Published on 2010-03-14T03:49:02Z Indexed on 2010/03/14 3:55 UTC
Read the original article Hit count: 208

Filed under:
|
|

Below is my example script:

<li><a <?php if ($_GET['page']=='photos' && $_GET['view']!=="projects"||!=="forsale") { echo ("href=\"#\" class=\"active\""); } else { echo ("href=\"/?page=photos\""); } ?>>Photos</a></li>
<li><a <?php if ($_GET['view']=='projects') { echo ("href=\"#\" class=\"active\""); } else { echo ("href=\"/?page=photos&view=projects\""); } ?>>Projects</a></li>
<li><a <?php if ($_GET['view']=='forsale') { echo ("href=\"#\" class=\"active\""); } else { echo ("href=\"/?page=photos&view=forsale\""); } ?>>For Sale</a></li>

I want the PHP to echo the "href="#" class="active" only when it is not on the two pages:

?page=photos&view=forsale

or

?page=photos&view=projects

© Stack Overflow or respective owner

Related posts about php

Related posts about if-statement