Adding a Url link

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
saffron
Forum Newbie
Posts: 7
Joined: Sat Apr 05, 2008 6:00 pm

Adding a Url link

Post by saffron »

Anyone know how to add a url link in my php script?
Thanks.
User avatar
bovermyer
Forum Commoner
Posts: 25
Joined: Tue Apr 08, 2008 9:14 am
Location: South Dakota

Re: Adding a Url link

Post 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>";
 
?>
Post Reply