Posted by Jeffery Fernandez on 02/01/05 04:25
Todd Cary wrote:
> I have the following:
>
> $p = <a href="http://209.204.172.137/casesearch/php/home.php">Home</a>
>
> However, when I have
>
> print($p); or
> echo $p;
>
> the result page does not display as a link; just as the text above.
>
> What have I missed?
>
>
> Todd
>
try:
<?php
$p = '<a href="http://209.204.172.137/casesearch/php/home.php">Home</a>';
echo $p;
?>
cheers,
Jeffery
http://melbourne.ug.php.net
Navigation:
[Reply to this message]
|