Notice: Undefined index: user in D:\phpStudy\WWW\js\ls\lsmc\php\add.ph...
原文: Notice: Undefined index: user in D:\phpStudy\WWW\js\ls\lsmc\php\add.php on line 9 (初用数据库(mysql)做用户登录注册这一块,遇到很多问题,通过搜索找到解决方案,把问题分享出来,希望可以帮助到和我一样问题的博友们,有问题还望多多指教。) 解决方法:在add.php文件最上边加上error_reporting(E_ALL ^ E_NOTICE); <?php error_reporting(E_ALL ^ E_NOTICE); require 'config.php'; //加载config.php //新增用户 $query = "INSERT INTO lsmc_user(user,pass,yzm) VALUES ('{$_POST['user']}',sha1('{$_POST['pass']}'))"; mysql_query($query) or die('新增失败:'.mysql_error()); echo mysql_affected_rows...
