PHP GET报错
Shelby
Shelby 2019-01-24 16:40:58
0
2
1560

<?php


教学网页:http://www.php.cn/code/1040.html#code_down_li


这行代码在phpstorm中一直报错:

C:\xampp\php\php.exe "D:\Yangsipeng\code\PS php CODE\reg.php"

PHP Notice:  Undefined index: username in D:\Yangsipeng\code\PS php CODE\reg.php on line 3
Notice: Undefined index: username in D:\Yangsipeng\code\PS php CODE\reg.php on line 3
PHP Notice:  Undefined index: pwd in D:\Yangsipeng\code\PS php CODE\reg.php on line 7
<br />
Notice: Undefined index: pwd in D:\Yangsipeng\code\PS php CODE\reg.php on line 7
<br />
Process finished with exit code 0
网页中打开也是一样的提示 html文件是按教学写的 两个文件也放在一起了


//$_GET后面加上中括号,将username作为字符串放在中括号里面,就得到了表单里面的<input type="text" name="username" /> 的值
$u = $_GET['username'];
echo $u.'<br />';

//$_GET['pwd'] 得到表单<input type="text" name="username" /> 的值
$passwd = $_GET['pwd'];
echo $passwd.'<br />';
?>

Shelby
Shelby

全部回复(1)
韦小宝

Undefined index: username  你在PHP中直接打印一下  $_GET看看有没有username这个字段啊

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!