识别其他按钮,然后使用PHP提交按钮

时间:2018-04-18 14:37:41

标签: php

我目前在项目网站上工作。 有多个"公司"按钮,我都给出了一个不同的名字 一个mailaddress。 网站上只有一个表格可以填写,但是应该发送到"公司"上的mailaddress。按钮。

enter image description here

"测试公司" square是一个按钮,其中包含应将表单发送到的地址的邮件地址。

enter image description here

上面显示的按钮^将发送带有填充值的表单。 如何让这个按钮使用另一个按钮中的邮件地址?

代码:

function CheckValueNaam($value, $mail){
    if ($value == "" || $value < "1") {
        echo '<td width="100%"><center>Er is iets misgegaan</center></td></tr>';
    }
    else {
        echo    '<td class="tableFieldsCenter">
                    <div class="container-box rotated">
                        <button type="button" class="btn btn-info btn-lg turned-button" id="buttonValidate" name="'.$mail.'" data-toggle="modal" data-target="#myModal">' . $value . '</button>
                    </div>
                </td>
            </tr>';
    }
}

<!-- Main -->
        <div id="main">

            <!-- Form -->
            <!-- Modal -->
            <div id="myModal" class="modal fade" role="dialog">
                <div class="modal-dialog">

                <!-- Modal content -->
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="close" data-dismiss="modal">x</button>
                            <h4 class="modal-title">Contact opnemen</h4>
                        </div>
                        <div class="modal-body">
                            <form method="post" class="formMarijn" id="reused_form">
                                <br>
                                <div class="form-group">
                                    <label for="name">Naam:</label>
                                    <input type="text" class="form-control" id="name" name="name" required maxlength="50">
                                </div>
                                <div class="form-group">
                                    <label for="email">Email:</label>
                                    <input type="email" class="form-control" id="email" name="email" required maxlength="50">
                                </div>
                                <div class="form-group">
                                    <label for="phone">Telefoon:</label>
                                    <input type="text" class="form-control" id="phone" name="phone" required maxlength="50">
                                </div>
                                <div class="form-group">
                                    <label for="location">Adres:</label>
                                    <input type="text" class="form-control" id="location" name="location" required maxlength="50">
                                </div>
                                <div class="form-group">
                                    <label for="name">Bericht:</label>
                                    <textarea class="form-control" id="message" name="message" placeholder="Uw bericht" maxlength="6000" rows="7"></textarea>
                                </div>
                                <button type="submit" name="submit" class="btn btn-lg btn-success btn-block" id="btnContactUs">Verstuur</button>
                            </form>
                            <div id="succes_message" style="width:100%; height:100%; display:none; ">
                                <h3>Sent your message successfully!</h3>
                            </div>
                            <div id="error_message" style="width:100%; height:100%; display:none; ">
                                <h3>Error</h3>
                                Sorry there was an error sending your form.
                            </div>
                        </div>
                    </div>
                </div>
            </div>

打印$ _POST不会给我按钮值 print_r($_POST);

0 个答案:

没有答案