Home  >  Article  >  Database  >  php-关于mysql数据库的小问题

php-关于mysql数据库的小问题

WBOY
WBOYOriginal
2016-06-06 09:44:441310browse

mysqlphp

数据库-----------------------------------
# 名字 类型 整理 属性 空 默认 额外 操作
1 aid int(10) UNSIGNED 否 无 修改 删除 主键 唯一 索引 空间 全文搜索 非重复值 (DISTINCT)更多

2 number tinyint(3) UNSIGNED 否 无 修改 删除 主键 唯一 索引 空间 全文搜索 非重复值 (DISTINCT)

aid number
0 2
0 2


为什么aid 都是0呢 不是1 2 3 4..这样的自动增长

如何才能自动变化着增长呢?


注册页面

if($_POST["submit"]){

$_SESSION['magic_user']=$_POST['username'];
$sql="insert into magic_user values('','".$_POST['username']."','".($_POST['password'])."')";
$result=mysql_query($sql)or die(mysql_error());
$_SESSION['magic_useraddnumber']=$_POST['number'];
$sql="insert into magic_useraddnumber values('','".$_POST['number']."')";
$result=mysql_query($sql)or die(mysql_error());
$_SESSION['magic_useraddorder']=$_POST['prizeid '];
$sql="insert into magic_useraddorder values('','".$_POST['prizeid ']."')";
$result=mysql_query($sql)or die(mysql_error());
if($result)
echo "alert('恭喜你注册成功,马上进入主页面');location='index.php';";
else
{
echo "alert('注册失败');location='in.php';";
mysql_close();
}
}

?>

请先填写您的资料:

请输入您的密码:

请输入您的名称:

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn