php-general | 2001072
Date: 07/25/01
- Next message: Merlin: "[PHP] Problem with iconv() function in php 4.06"
- Previous message: Sean Cazzell: "Re: [PHP] Help with this-> pointers"
- In reply to: J S R: "[PHP] "OR" Problems"
- Next in thread: J S R: "Re: [PHP] "OR" Problems"
- Reply: J S R: "Re: [PHP] "OR" Problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, 25 Jul 2001 13:36, J S R wrote:
> Shouldn't this work? I did it because I want the link to change to the
> "top-alt" class when the certain link is selected.
>
> but when i do this... they "if" statement is always active even if its
> not on the page.
>
> what am i doing wrong.
Several things, by the looks of it :-:
>
> <?php
> $name = getenv ("SCRIPT_NAME");
> ?>
>
> <?php
> if($name == "/site/portfolio.php" or "/site/portfolio-ps.php)
if($name == "/site/portfolio.php" or $name == "/site/portfolio-ps.php)
{
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"110\"
> height=\"1\"><a class=\"top-alt\"
> href=\"portfolio.php\">portfolio</a></td>";
> else
} else {
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"110\"
> height=\"1\"><a class=\"top\"
> href=\"portfolio.php\">portfolio</a></td>" ?>
> <?php
> if($name == "/site/services.php" or "/site/services-ws.php")
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"20\"
> height=\"1\"><a class=\"top-alt\"
> href=\"services.php\">services</a></td>"; else
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"20\"
> height=\"1\"><a class=\"top\" href=\"services.php\">services</a></td>"
> ?>
> <?php
> if($name == "/site/casestudies.php" or "/site/casestudies-ap.php")
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"20\"
> height=\"1\"><a class=\"top-alt\" href=\"casestudies.php\">case
> studies</a></td>";
> else
> echo "<td nowrap><img src=\"images/spacer.gif\" width=\"20\"
> height=\"1\"><a class=\"top\" href=\"casestudies.php\">case
> studies</a></td>"
> ?>
and there are a few more of thtose down the page. I'll leave you to sort
them out :-)
-- David Robley Techno-JoaT, Web Maintainer, Mail List Admin, etc CENTRE FOR INJURY STUDIES Flinders University, SOUTH AUSTRALIA"I'm embarrassed," Tom admitted readily.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Merlin: "[PHP] Problem with iconv() function in php 4.06"
- Previous message: Sean Cazzell: "Re: [PHP] Help with this-> pointers"
- In reply to: J S R: "[PHP] "OR" Problems"
- Next in thread: J S R: "Re: [PHP] "OR" Problems"
- Reply: J S R: "Re: [PHP] "OR" Problems"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

