我想使用以下url示例POST变量:
<form method="POST" action="index.php?p=1">
<input id="mail" type="text" size="50" placeholder="E-Mail" />
<input id="password" type="password" size="50" placeholder="Password" />
<button type="submit">Login</button>
</form>
使用链接中的p-Variable,我的网站将确定应显示哪个默认网站。
我的问题是我的默认网站中的$ _POST数组中没有可用的数据。
$ _POST数据是否可用于下一个被调用的脚本?
或者我做错了什么?
答案 0 :(得分:1)
您需要为输入命名。例如name="mail"
:
<form method="POST" action="index.php?p=1">
<input name="mail" id="mail" type="text" size="50" placeholder="E-Mail" />
然后您将访问$_GET['p']
和$_POST['mail']
。