session_start();
define('IN_TG',true);
require 'include/global.php';
//require dirname(__FILE__).'/include/header.php';
require 'include/register.inc.php';
if (@$_GET['action']=='2'){
check_code($_POST['yzm'],$_SESSION['code']);
$_clean=array();
$_clean['uniqid']=check_uniqid($_POST['uniqid'], $_SESSION['uniqid']);
$_clean['active']=active_uniqid();
$_clean['username']=check_username($_POST['username'],2,40);
$_clean['password']=check_password($_POST['password'], $_POST['notpassword'],6);
$_clean['passt']=check_question($_POST['passt'], 4, 20);
$_clean['passd']=check_answer($_POST['passt'],$_POST['passd'],2,20);
$_clean['sex']=check_sex($_POST['sex']);
$_clean['email']=check_mail($_POST['email'],6,40);
$_clean['$_qq']=check_qq($_POST['qq']);
$_clean['$_url']=check_url($_POST['url'],40);
@mysql_query( "INSERT INTO project.test1(
tg_id,
tg_uniqid,
tg_active,
tg_usename,
tg_password,
tg_passt,
tg_passd,
tg_email,
tg_qq,
tg_url,
tg_sex,
tg_reg_time,
tg_last_time,
tg_last_ip
)
values(
'{$_clean['uniqid']}',
'{$_clean['active']}',
'{$_clean['username']}',
'{$_clean['password']}',
'{$_clean['passt']}',
'{$_clean['passd']}',
'{$_clean['email']}',
'{$_clean['qq']}',
'{$_clean['url']}',
'{$_clean['sex']}'
'now()',
'now()',
'{$_SERVER["REMOTE_ADDR"]}'
)")or die(mysql_error());
mysql_close();
location('恭喜你,註冊成功','1.php');
}else{$_SESSION['uniqid']=$_uniqid=sha1(uniqid(rand(),true));}
?>
多使用者留言系統--註冊
define('script','register');
require dirname(__FILE__).'/include/tittle.php';
?>
require dirname(__FILE__).'/include/header.php';
?>
會員註冊
require dirname(__FILE__).'/include/footer.php';
?>
資料庫欄位名
tg_id mediumint(8) UNSIGNED 否 無
tg_uniqid char(40) utf8_general_ci 否 無
tg_active char(40) utf8_general_ci 否 無
tg_usename varchar(20) utf8_general_ci 否 無
tg_password char(40) utf8_general_ci 否 無
tg_passt varchar(20) utf8_general_ci 否 無
tg_passd char(40) utf8_general_ci 否 無
tg_sex varchar(1) utf8_general_ci 否 無
tg_email varchar(40) utf8_general_ci 是 NULL
tg_qq tinyint(10) 是 NULL
tg_url varchar(40) utf8_general_ci 是 NULL
tg_reg_time datetime 否 無
tg_last_time datetime 否 無
tg_last_id varchar(20) cp1251_general_ci 否 無
全選 / 全不選 選中項:
回複討論(解決方案)
insert 指令的欄位列表是14個,值列表只有13個
應該是缺少 tg_id 的對應值
如果 tg_id 值自增欄位,可刪去
另外 now() 函數不要用引號括起,否則變成字串了
now()函數不用引號括起來會報錯 就算是增加了ID的對應值也是Column count doesn't match value count at row 1
Column count doesn't match value count
列數不匹配
如果你非要堅持錯誤,我也就不說什麼了
會不會是資料庫欄位問題
values 裡面的值的個數與前面的列數不匹配
都不對應資料庫怎麼做插入處理?就跟你原本吃一碗飯的,現在給你兩碗你肯定吃不下,那妥妥的報錯啊。