0

php邮件程序的两个问题:

第一个 • Mailer 不适用于:

<a class="button" href="javascript:" onClick="document.getElementById('form').submit()">SUBMIT</a>

• 它适用于:

<input type="Submit" name="Submit" value="send" class="submitbutton"/>

如果我用上面的输入替换按钮,那么它就可以工作。

但是我以前从未将它与单选按钮一起使用:提交了表单但未处理单选按钮,这是本文中的第 2 个问题;该脚本似乎是为多个替代复选框创建的,而不是为选择性单选按钮创建的。

必须更改什么以适应提交按钮和单选按钮?

形式

<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>


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";
4

1 回答 1

2

代替 :

if(isset($_POST['Submit'])) {

做 :

if(isset($_POST['email'])) {

因为具有名称的提交按钮Submit不再存在

于 2012-05-29T16:22:36.940 回答