hello anyone and everyone,
I am basically just a designer/artist/illustrator somewhat inept at server side design and functionality. I have a PHP NUKE file that returns a "thank you your taxi has been ordered" message after a user submits a form. I want to add to the message and place a hyper-link to my site in the message. I can add to the message, however I cannot add a hyperlink properly because i obviously do not know the proper syntax. here is the few lines of code to see what i mean..... i want to add a link where it says (GO TO: http://www.picturethatgraphics.com) Please help if you can. Also is it possible to add an image to be displayed just under the hyperlink?
mail($to, $subject, $msg, $mailheaders);
echo "<p><div align=\"center\">Thank You, Your Taxi Order Has Been Received</div></p>";
echo "<p><div align=\"center\">We will be calling you back as soon as we can.</div></p>";
echo "<p><div align=\"center\"><b>FOR PROFESSIONAL GRAPHICS AND WEBSITES AT THE VERY LOWEST RATES CALL:<b/></div></p>";
echo "<p><div align=\"center\">651-330-8541, OR GO TO www.picturethatgraphics.com</div></p>";
} elseif ($send == "no") {
OpenTable2();
if (!empty($name_err)) { echo "$name_err"; }
if (!empty($time_err)) { echo "$time_err"; }
if (!empty($pickup_err)) { echo "$pickup_err"; }
if (!empty($destination_err)) { echo "$destination_err"; }
if (!empty($phone_err)) { echo "$phone_err"; }
if (!empty($email_err)) {echo "$email_err"; }
if (!empty($message_err)) {echo "$message_err"; }
CloseTable2();
echo "<br><br>";
echo $form_block;
}
}
CloseTable();
include("footer.php");
?>