关于商城的安装模块,请告诉回答
本帖最后由 ljz6655888 于 2013-01-09 23:25:19 编辑
谁能告诉我:
<?php
echo "<center>";
if(!$_POST["admin"])
{
?>
<script language="javascript">
function check(f)
{
if(f,admin,value=="")
{
alert("请输入管理员名称!");
f.admin.focus();
return(false);
}
if (f.pass.value=="")
{ alert("请输入管理员密码!");
f.pass.focus();
return(false);
}
if(f.re_pass.value!=f.pass.value)
{
alert("重复密码与密码不一致!");
f.re_pass.focus();
f.re_pass.select();
return (false);
}
if (f.mail.value=="")
{
alert("请输入管理员邮箱!");
f.mail.focus();
return (false);
}
if(f.type.value=="")
{
alert("请输入默认商品类别!");
f.type.focus();
return(false);
}
}
</script>
<style type="text/css">
<!--
tr,td{font-size:10pt}
-->
</style>
mini 商城系统安装程序<p>
<table border="1" cellspacing="0" cellpadding="1" bordercolordark="#FFFFFF" bordercolorlight="#0000FF" width="300">
<form method=post action="<?php $_SERVER["PHP_SELF"] ?>" onsubmit="return check(this)">
<tr>
<td colspan=2 bgcolor="#CCCCFF" align="center">管理员信息</td>
</tr>
<tr>
<td>管理员名称</td>
<td><input type=text name="admin" ></td>
</tr>
<tr>
<td>管理员密码</td>
<td><input type=password name="pass" size=21></td>
</tr>
<tr>
<td>确认密码</td>
<td><input type=password name="re_pass" size=21 /></td>
</tr>
<tr>
<td>管理员邮箱</td>
<td><input type=text name="mail"></td>
</tr>
<tr>
<td colspan="2" bgcolor="#CCFFCC" align="center">商品类别信息</td>
</tr>
<tr>
<td>默认商品类别名称</td>
<td><input type=text name="type" ></td>
</tr>
<tr>
<td>默认商品类别介绍</td>
<td><input type=text name="description" ></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="确认安装" /></td>
</tr>
</form>
</table>
<?php
}
else
{
$admin=$_POST["admin"]; //获得管理员名称
$pass=md5($_POST["pass"]); //获取管理员密码
$mail=$_POST["mail"]; //获取管理员邮箱
$type=$_POST["type"]; //获取默认商品类别
$description=$_POST["description"]; //获取默认商品类别说明
$time=date("Y年m月d日"); //获取当前时间
include "config.php" //加载配置文件
$sql="create table $my_user(
id int(5)&nbs