PHP GET報錯
Shelby
Shelby 2019-01-24 16:40:58
0
2
1559

<?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學習者快速成長!