Page 1 of 1

Adding a Url link

Posted: Wed Apr 09, 2008 9:11 am
by saffron
Anyone know how to add a url link in my php script?
Thanks.

Re: Adding a Url link

Posted: Wed Apr 09, 2008 9:34 am
by bovermyer
What do you mean, exactly? If you're talking about how to output a link to the web browser, you would use this -

Code: Select all

<?php
 
echo "<a href=\"http://www.urlgoeshere.com\">URL Goes Here</a>";
 
?>