| 
 Posted by Shelly on 04/28/06 22:18 
"Kevin Wells" <kev.wells@dsl.pipex.com> wrote in message  
news:d4f8aa1e4e.Kevin@pipex.com... 
> 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 
> } 
> ?> 
> 
 
Actually, all he need do is on the homepage 
<?php $page="something" ?> 
and on all pages do 
if (isset($page)) { 
.... 
} else { 
.... 
} 
 
Shelly
 
  
Navigation:
[Reply to this message] 
 |