Jump to content

Echoing a hyperlink.


laurajohn89

Recommended Posts

Hi.

 

I am echoing event information into a table and one of my variables I am echoing is a website.  I was wondering how I could make it echo like a hyperlink.

 

The code I currenrlt have is:

echo "<tr><td>Website:  " . $row['website'] . "</td></tr>";

 

I was wondering where the a href would come into this?

Link to comment
https://forums.phpfreaks.com/topic/198528-echoing-a-hyperlink/
Share on other sites

Hi.

 

I am echoing event information into a table and one of my variables I am echoing is a website.  I was wondering how I could make it echo like a hyperlink.

 

The code I currenrlt have is:

echo "<tr><td>Website:  " . $row['website'] . "</td></tr>";

 

I was wondering where the a href would come into this?

 

echo "<tr><td>Website:  <a href='" . $row['website'] . "' /></td></tr>";

Link to comment
https://forums.phpfreaks.com/topic/198528-echoing-a-hyperlink/#findComment-1041729
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.