Anyone know how to add a url link in my php script?
Thanks.
Adding a Url link
Moderator: General Moderators
Re: Adding a Url link
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>";
?>