无法得到post过来的值,该怎么解决
程序员文章站
2024-02-05 22:34:30
...
无法得到post过来的值
初学php,为什么上面无法把name和password传到secret.php里,导致每次都输出Please input an effective username and password?
//secret.php
//Create short names for variables
if($_POST['name']==''&&$_POST['password']=='')
{
//Visitor need to enter a name and password
echo '
}
elseif($_POST['name']=='root'&&$_POST['password']=='123')
{
echo '
}
else
{
echo '
}
?>
------解决方案--------------------
需要为input控件增加name属性,只有这样,浏览器才会把值提交到服务器
初学php,为什么上面无法把name和password传到secret.php里,导致每次都输出Please input an effective username and password?
//secret.php
//Create short names for variables
if($_POST['name']==''&&$_POST['password']=='')
{
//Visitor need to enter a name and password
echo '
Please input an effective username and password
';}
elseif($_POST['name']=='root'&&$_POST['password']=='123')
{
echo '
Welcome to the New World!
';}
else
{
echo '
You are not welcome!
';}
?>
------解决方案--------------------
需要为input控件增加name属性,只有这样,浏览器才会把值提交到服务器
推荐阅读
-
无法得到post过来的值,该怎么解决
-
移动到右边的,为什么要选中后提交才能获取到相应的值。该怎么解决
-
html - php文件无法得到POST过来的数据
-
sql中对于传过来的空值判断,该怎么处理
-
mysql_affected_rows的返回值,该怎么解决
-
懂cakephp的帮忙看一下这段cakephp的代码,为什么AuthComponent:user('id')取不到值,该怎么解决
-
PHP 读取大文件时,怎样得到以回车换行的一行数据。该怎么解决
-
laravel 解决后端无法获取到前端Post过来的值问题
-
Outlook无法保存附件该怎么办? Outlook不能下载附件的解决办法
-
laravel 解决后端无法获取到前端Post过来的值问题