我在这里结束了我的智慧,我很肯定这是一个荒谬的打字错误,或者我忘了写点什么.
无论如何,我试图将数据从twitter引导模式内的表单发送到一个名为’processed.php’的文件,该文件使用PHPMailer脚本.
但是,当我提交表单时,没有数据传递给查询字符串,url只是更改为’/processed.php?’
如果有人能够对它有所了解,我会非常感激.
这是代码:
HTML第一:
Navn:
Telefon nummer:
Besked:
Send besked
Udfyld venligst alle felter.
现在的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;
?>
无论如何,我在查询字符串中没有得到任何东西.
希望可以有人帮帮我.
非常感谢提前!
解决方法:
我认为你需要在输入中添加一个name属性,以便提交值,例如
应该
标签:php,query-string,forms,html
来源: https://codeday.me/bug/20190716/1480855.html