Rumah >pembangunan bahagian belakang >tutorial php > 无法得到post过来的值,该怎么解决

无法得到post过来的值,该怎么解决

WBOY
WBOYasal
2016-06-13 13:41:301137semak imbas

无法得到post过来的值


 
 
 
 
 
 
 
 
 
 
 
 
 
Username
Password

 

初学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属性,只有这样,浏览器才会把值提交到服务器
Username



Password
Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn