Two problems with a php mailer :
The 1st one
• Mailer does not work with :
<a class="button" href="javascript:" onClick="document.getElementById('form').submit()">SUBMIT</a>
• It uses to work well with :
<input type="Submit" name="Submit" value="send" class="submitbutton"/>
If I replace the button by the above input then it works.
However I have never used it with radiobuttons before : the form is submitted but radiobuttons are not processed which is trouble number 2 in this post;
The script seems to be created for multi alternative checkboxes and not for selective radiobutton.
is there anything in this code to be changed in order to accomodate both submit button and radiobuttons ?
FORM
<form class="form-1" id="form" method="POST" action="php/subscription.php">
<input type="text" id="name">
<input type="text" id="phone">
<input type="text" id="email">
<input type="checkbox" name="check[ ]" value="iwhishtoreceivemailing" > WITH CHECKBOX VALUES ARE SUBMITTED
<input type="radio" name="check[ ]" id=""> ????????????? don´t know how to change the code for radiobuttons
<input type="text" id="message">
<a class="button" href="javascript:" onClick="document.getElementById('form').submit()">SUBMIT</a> ???? ...is the submition method compatible with this stuff in javascript ?
how to make it work with this php script ??
MAILER.PHP (php code is pasted below)
<?php
if(isset($POST['Submit'])) {
$to = "anything@whatever.com ";
$to2 = "johndoe@jackfrost.com";
$subject = "contact_form";
$name = $POST['visitor_name'];
$phone = $POST['one'];
$email = $POST['email'];
$message = $_POST['message'];
foreach( (array)$_POST['check'] as $value){
$check_msg .= "Checked: $value\n";
}
$body = "Name: $name\n phone: $phone\n Email : $email\n Mailing: $iwhishtoreceivemailing\n Message: $message\n";
header("Location: thankyoupage.html");
mail($to, $subject, $body );
mail($to2, $subject, $body);
} else {
echo "error_invalid_function";[/B][/I][/I]