Adding a hyperlink to PHP script

Hi - I hope someone can help me - all I am trying to is add a hyperlink to some text in my php script: (see below) how can I do this?

$email=$_POST[‘email’];
$name=$_POST[‘name’];

$autoreply="Dear $name

Thank you downloading your guide to Email Marketing from Goldmine Media, the choice of financial professionals.

Have you also signed up to receive your email newsletter?

Subscribers will receive a regular email newsletter crammed with ideas to help you improve client communication, raise brand awareness, improve marketing efficiency, enhance client retention and increase sales.

Sign up today (WANT THE PHP HYPLERINK HERE!)

";

PHP doesn’t have hyperlinks, HTML does. If you don’t know how to write a HTML tag, you really shouldn’t be doing PHP to be honest with you. Please learn HTML, CSS and JavaScript before bothering with PHP, as it is merely a tool to alter the HTML that is output (most of the time).

Nevertheless you are after the anchor tag () - just remember to escape the double quotes.

Sponsor our Newsletter | Privacy Policy | Terms of Service