避免出现"Notice: Use of undefined constant......"警告

刚开始学习php,写了一段测试程序,如下:

$username = $_POST[username];//从html表单获取数据;
$password = $_POST[password];

$link = mysql_connect('localhost','root','123') or die('could not connect:'.mysql_error()) ;
$select = mysql_select_db('blksun',$link) or die('could not select database') ;

$query = 'select * from userlist where userName="'.$username.'"';
$result = mysql_query($query) or die('query failed:'.mysql_error()) ;

echo "

" ;
echo "" ;
while ($array = mysql_fetch_assoc($result))
{
 printf("",$array[Id],$array[userName],$array[userPwd]);
}
echo "
idusernameuserpwd
%d%s%s
" ;

// 释放结果集
mysql_free_result($result);
// 关闭连接
mysql_close($link);
?>

以上程序运行时就会出现诸如:“Notice: Use of undefined constant username - assumed 'username' in D:/wwwroot/userreg.php on line 2
的提示,但是结果也能显示出来。要想不显示“notice”,就得将上面程序中红色的变量,加上引号。

另外:$array[Id],$array[userName],$array[userPwd] 必须大小写区分。

 

你可能感兴趣的:(php)