Using Echo command to display hyperlink

How would you create a hyperlink using echo?

I want to display this info:

Your using Firefox. Have you got the colorful tabs add-on? You can download it here (here is a hyperlink that needs to be formatted in Red and I need to open this in a new browser window)

How would you do this using echo?
[324 byte] By [RajaCode] at [2007-11-20 9:09:54]
# 1 Re: Using Echo command to display hyperlink
The same way you echo anything. Instead of plain text, echo the <a> tag!

Please start searching before posting. Your first stop should be PHP.net (http://www.php.net). They have a large online reference and documentation section which can teach you a lot. dev-archive also has a large database from which to search.
PeejAvery at 2007-11-10 3:56:22 >
# 2 Re: Using Echo command to display hyperlink
it would look like this...

echo 'Your using Firefox. Have you got the colorful tabs add-on? You can download it ';
echo '<a href=" http://your.url.here/">here.</a>';
superfrog at 2007-11-10 3:57:21 >