Meeta Bhaduri <mailto:[EMAIL PROTECTED]>
    on Friday, July 25, 2003 12:33 PM said:

> Correct php code would be :
> <?php echo getenv("myURL");?>/mypath/my.gif
> Works only if I remove the ">" :
> <?php echo getenv("myURL");?/mypath/my.gif
> 
> Can someone point out where I'm goofing up?

Do this instead:

<?php
        echo getenv("myURL")."/mypath/my.gif";
?>

> Also, I'm not on this list, so I'd appreciate replies
> to my email address mg_bhaduri(at)yahoo(dot)com.

Most people will do this anyway.


hth,
Chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to