en mi documento tellafriend.php tengo
Código PHP:
<?PHP
/
# This section removes any nasty tags that the*
# user may have entered in the form fields
strip_tags($friendmail1);
strip_tags($friendmail2);*
strip_tags($friendmail3);*
strip_tags($email);
strip_tags($name);
# This section sends you a notification email when*
# the form is used
// Your email address (for copies to be sent to you)
$emailto = "[email protected]";*
// Your email subject text
$esubject = "a page has been sent";*
// The email text for copies sent to you
$emailtext = "
".$name." has used the tell-a-friend form. Their email address is ".$email."
The people they have recommended are:
".$friendmail1."
".$friendmail2."
".$friendmail3."
";
# Send the email to you
@mail("$emailto", $esubject, $emailtext, "From: $email");
## This section sends to the recipients
// Target page after successful submission
$thankyoupage = "thankyou.htm";*
*//* Change the subject text below to suit
$tsubject = "A great site";
*// Change the text below for the email*
$ttext = "
Hi,
A friend or colleague of yours, ".$name.", whose email address is ".$email." thought you may like to visit our site. ".$name." has used our Tell-a-Friend form to send you this email.
http://www.coquetitas.com
";
# This sends the email to the addresses entered
@mail("$friendmail1 $friendmail2 $friendmail3", $tsubject, $ttext, "FROM: $email");
# After submission, the target URL
header("Location: $thankyoupage");
exit;
?>
En mi documento recommend.htm tengo:
<html>*
<head>
<title>tell a friend</title>
<script language="javascript">
<!--
function reset() {
document.tellafriend.name.value="";
document.tellafriend.email.value="";
document.tellafriend.friendmail1.value="";
document.tellafriend.friendmail2.value="";
document.tellafriend.friendmail3.value="";
}
function validate() {
if (document.tellafriend.friendmail1.value.length==0) {
alert("please enter your friend's email address");
return false;
}
if (document.tellafriend.email.value.length==0) {
alert("please enter your email address");
return false;
}
if (document.tellafriend.name.value.length==0) {
alert("please enter your name");
return false;
}
document.tellafriend.submit()
return true;
}
//-->
</script>
</head>
<body onload="reset()" topmargin="0" leftmargin="0">*
<center>
</center>
<table width="450" cellpadding="0" cellspacing="0" align="center">*
<tr valign="top">*
<td valign="middle" align="center">*
<p>Complete the details below to send our link to your friends.</p>*
<form name="tellafriend" action="tellafriend.php" method="post" onsubmit="return checkfields()">*
<div align="center">
<center>
<table border="0" cellpadding="10" cellspacing="0">
<tr>
<td> *your name:</td>
<td>
<input size="30" name="name" maxlength="45">
</td>
</tr>
<tr>
<td>*your email:</td>
<td>
<input size="30" name="email" maxlength="45">
</td>
</tr>
<tr>
<td colspan="2">
<p align="center">please enter your friend's email addresses:</td>
</tr>
<tr>
<td>*email 1:</td>
<td>
<input size="30" name="friendmail1" maxlength="45">
</td>
</tr>
<tr>
<td>email 2:</td>
<td>
<input size="30" name="friendmail2" maxlength="45">
</td>
</tr>
<tr>
<td>email 3:</td>
<td>
<input size="30" name="friendmail3" maxlength="45">
</td>
</tr>
<tr>
<td colspan="2">
<p align="center">
The email that will be sent will contain your name. <br>
<input onclick="validate();" type="button" value="click here to send">
</td>
</tr>
</table>
</center>
</div>
</form>
</td>
</tr>*
<tr valign="top">*
<td valign="middle" align="center">*
</td>
</tr>*
</table>
</body>
</html>
que estoy haciendo mal?
![Stress](http://static.forosdelweb.com/fdwtheme/images/smilies/stress.png)