PHP 表单传递参数与获取参数有关问题
程序员文章站
2024-04-05 11:02:12
...
PHP 表单传递参数与获取参数问题
}
else
{
?>
E-mail:
echo $_POST['email'];
?>
Name:
echo $_POST['last_name'];
?>
Password:
echo $_POST['password'];
?>
}
?>
初学 PHP 问个问题 在这里 获取
E-mail:
echo $_POST['email'];
?>
Name:
Password:
这些信息时 只输出一个没问题
当我输出多个的时候像这个样子的
E-mail:
echo $_POST['email'];
?>
Name:
echo $_POST['last_name'];
?>
Password:
echo $_POST['password'];
?>
他就出错了 - -!!!
总是出现
An error occurred.
Sorry, the page you are looking for is currently unavailable.
Please try again later.
If you are the system administrator of this resource then you should check the error log for details.
Faithfully yours, nginx.
这个东西 只输出一个时就可以
各位大神请指教
------解决方案--------------------
Register
if (!isset($_POST['register1']) || ( $_POST['register1'] != 'Register'))
{
#echo "test1";
?>Registration
}
else
{
?>
E-mail:
echo $_POST['email'];
?>
Name:
echo $_POST['last_name'];
?>
Password:
echo $_POST['password'];
?>
}
?>
初学 PHP 问个问题 在这里 获取
E-mail:
echo $_POST['email'];
?>
Name:
Password:
这些信息时 只输出一个没问题
当我输出多个的时候像这个样子的
E-mail:
echo $_POST['email'];
?>
Name:
echo $_POST['last_name'];
?>
Password:
echo $_POST['password'];
?>
他就出错了 - -!!!
总是出现
An error occurred.
Sorry, the page you are looking for is currently unavailable.
Please try again later.
If you are the system administrator of this resource then you should check the error log for details.
Faithfully yours, nginx.
这个东西 只输出一个时就可以
各位大神请指教
------解决方案--------------------
Register
if (!isset($_POST['register1'])
------解决方案--------------------
( $_POST['register1'] != 'Register'))
{
#echo "test1";
?>Registration
推荐阅读
-
PHP 表单传递参数与获取参数有关问题
-
PHP_PDO 调用存储过程,返回参数有关问题
-
php的内置函数create_function创建出来的函数 参数列表与函数体引号问题
-
PHP关于file_get_contens函数向本地文件传参数的有关问题
-
Struts2学习笔记之参数的传递与获取(四) 博客分类: struts2 strutsel
-
struts2后台重复获取前台参数问题 博客分类: 数据交互 strutsexcel拼接参数表单提交
-
解决form中action属性后面?传递参数 获取不到的问题
-
解决form中action属性后面?传递参数 获取不到的问题
-
php解决地址栏中参数不正确输入而跳转到的空白页面有关问题
-
关于PHP中URL参数的传递有关问题