3

我在这里束手无策,我很肯定这是一些荒谬的打字错误,或者我忘记写点什么了。

无论如何,我正在尝试将数据从 twitter 引导模式内的表单发送到使用 PHPMailer 脚本的名为“processed.php”的文件。但是,当我提交表单时,没有数据传递给查询字符串,url 只是更改为“/processed.php?”

如果有人能对此有所了解,我将非常感激。

这是代码:

HTML 第一:

     <div class="modal-body">
        <form id="send-msg" method="GET" action="processed.php">
            <fieldset>
                <div class="control-group">
                    <label class="control-label" for="inputNavn">Navn:</label>
                    <div class="controls">
                        <input type="text" class="input-medium required" id="inputNavn">
                    </div>
                </div>
                <div class="control-group">
                    <label class="control-label" for="inputTlf">Telefon nummer:</label>
                    <div class="controls">
                        <input type="text" class="input-medium required" id="inputTlf">
                    </div>
                </div>
                <div class="control-group">
                    <label class="control-label" for="inputMsg">Besked:</label>
                    <div class="controls">
                        <textarea class="input-large required" id="inputMsg" rows="3"></textarea>
                    </div>
                </div>
                <div class="control-group">
                    <div class="controls">
                        <button type="submit" class="btn btn-primary btn-large" id="inputSend" href="#" rel="popover" data-content="Vi vender tilbage hurtigst muligt." data-original-title="Send besked" data-loading-text="Sender besked…">Send besked</button>
                    </div>
                </div>
            </fieldset>
        </form>
        <div id="results" class="alert alert-info span2">
            <p>Udfyld venligst alle felter.</p>
        </div>
    </div>

现在的PHP:

<?php

$navn= $_REQUEST['inputNavn'];
$tlf= $_REQUEST['inputTlf'];
$besked= $_REQUEST['inputMsg'];

require_once('PHPMailer/class.phpmailer.php');
...(The rest is just the PHPMailer script)

echo $navn;
?>

无论如何,我在查询字符串中没有得到任何东西。希望可以有人帮帮我。

提前非常感谢!

4

3 回答 3

8

我认为你需要添加一个name属性,input以便提交值,例如

<input type="text" class="input-medium required" id="inputNavn">

应该

<input type="text" class="input-medium required" id="inputNavn" name="inputNavn">
于 2012-05-22T14:55:28.767 回答
2

您忘记为表单元素设置名称属性。

<input type="text" class="input-medium required" id="inputNavn" name="inputNavn">
于 2012-05-22T14:57:49.357 回答
1

正如 Smirkin Gherkin 所说,有必要指定一个名称。

Id 指的是作为对象的输入。这意味着,您可以使用 javascript 或其他语言对输入进行更新或执行某些操作。

名称是服务器语言用来访问该输入字段上的数据的引用。

如果我没记错的话(这是我的提示,可能是错误的):您可以将javascript与输入的名称一起使用,但您不能将php与输入的id一起使用

于 2012-05-22T15:01:56.890 回答