|
Posted by Kevin Wells on 04/28/06 16:28
In message <44521287$0$30719$5a62ac22@per-qv1-newsreader-01.iinet.net.au>
TreatmentPlant <treatmentplant@DIESPAMMERS.iinet.net.au> wrote:
>How can I write a PHP code to find the URL on which the code the itself
>is running?
>
>Sorry about the question: it's a bit difficult to describe, so here is
>what I am trying to achieve...
>
>...in sort of LogicCode
>If this is NOT the home page then
> associate the company logo with a link to the home page
>else
> just display the logo without any linking reference.
>
>
>
>TIA
On the home page have something like this
<? $page="home" ?> and on the other pages
<? $page="nothome" ?>
Then where you want the image to be have
<?
if ($page=="nothome") {
Code fopr company logo and link to home page code
}
else
{
Code for logo withouth link to home page
}
?>
--
Kev Wells http://kevsoft.topcities.com
http://kevsoft.co.uk/
ICQ 238580561
Bring me my bow of burning gold!
Navigation:
[Reply to this message]
|