On Thu, 16 Sep 2004 14:54:34 -0700, revDAVE <[EMAIL PROTECTED]> wrote: > How can I use a PHP variable as the destination for a link? > > <? $mylink = 'thispage.htm' > > <a href="thispage.htm">go here</a> > > With var...? How do I write this....? > > <a href="??? $mylink ???">go here</a>
<a href="<?php echo $url;?>"><?php echo $url;?></a> -- Greg Donald http://gdconsultants.com/ http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php