how come i can not get my reply page to come back with the URL
Script
"
<html>
<head>
<title>Form Result</title>
<body>
<?php
// Send
mail('computerceal@gmail.com', 'Information', $message);
/*This page receives and handles the data generated by "contacts.htm".*/
$var1 = $_POST['fname'] ;
$var2 = $_POST['lname'] ;
$var3 = $_POST['email'] ;
$var4 = $_POST['comments'] ;
$messagebody =
"Information Results:\n----------------------------------------\n
First Name:$var1\n\n
Last Name:\n$var2\n\n
E-Mail:\n$var3\n\n
Comments:\n$var4";
mail('computerceal@gmail.com', 'user info', $messagebody);
print ("Your submission has been received! To return to the home page please click-$Array[http:\\www.edusult.com]-\n ");
?>
</body>
</html>
Script
"
<html>
<head>
<title>Form Result</title>
<body>
<?php
// Send
mail('computerceal@gmail.com', 'Information', $message);
/*This page receives and handles the data generated by "contacts.htm".*/
$var1 = $_POST['fname'] ;
$var2 = $_POST['lname'] ;
$var3 = $_POST['email'] ;
$var4 = $_POST['comments'] ;
$messagebody =
"Information Results:\n----------------------------------------\n
First Name:$var1\n\n
Last Name:\n$var2\n\n
E-Mail:\n$var3\n\n
Comments:\n$var4";
mail('computerceal@gmail.com', 'user info', $messagebody);
print ("Your submission has been received! To return to the home page please click-$Array[http:\\www.edusult.com]-\n ");
?>
</body>
</html>