ok im a bit new at this php thing so here it goes...
ok im trying to make an emailer for a friends website so he can send multi e-mails your ppl..
thing is im getting this: Parse error: syntax error, unexpected T_STRING in C:\wamp\www\mail.php on line 79
like i sayed im new at this so i have literaly NO clue what it means i was just going through a php short walkthrough so lol
<form action="mail.php" method="post">
<h1 align="center">John´s Mailer.</h1>
<h1 align="center">Of:</h1>
<div align="center">Name:<br>
<input name="from_name" type="text" value="UnknowN" size="50">
<br>
<br>
Direction of Email:<br>
<input name="from_mail" type="text" value="anonimo@anonimo.com" size="50">
<br>
<br>
To answer a:<br>
<input name="email_return" type="text" value="anonimo@anonimo.com" size="50">
<br>
<br>
</div>
<h1 align="center">Options:</h1>
<p align="center">Victim:<br>
<input name="target" type="text" size="50>
<br>
<br>
Asunto:<br>
<input name="topic" type="text" value="Emailer By John" size="50">
<br>
<br>
Message:<br>
<textarea name="message" cols="100" rows="10">Emailer Made By John.</textarea>
</p>
<p align="center">Amount of messages sent:</p>
<p to align="center">
<input name="messages" type="text" id="messages" value="10" size="15">
<br>
<br>
<input type=submit>
</p>
</form>
<?php
n>";
.="Reply-To:$email_returnn";
=stripcslashes($message);
for($x=1;$x<$messages+1;$x++){
mail($target, $topic, $message2, $header);
}
any idea what could be wrong?