基于mysql的论坛(1)
###############################################此篇文章属原创,如有引用,请标明作者信息。
作者:冷情疯子
Email: edincur@yeah.net
http://safebase.yeah.net
###############################################
## adduser.php(做为现在的主流开发语言) ################################
###############################################
<?php(做为现在的主流开发语言)
require("func.php(做为现在的主流开发语言)");
if(empty($name) or empty($pwd1)){
show_error(2);
$founderr=1;
}
if (is_user_exits($name)){
show_error(3);
$founderr=1;
}
if ($pwd1<>$pwd2){
show_error(5);
$founderr=1;
}
if (strlen($name)>16 or strlen($pwd1)>16 or strlen($qm)>255){
show_error(6);
$founderr=1;
}
$password=$pwd1;
if (!$founderr){
adduser();
echo "成功!";
}
?>
######################
### admin.php(做为现在的主流开发语言) ########
######################
<?php(做为现在的主流开发语言)
require "func.php(做为现在的主流开发语言)";
if (adminok()) {
?>
<html>
<head>
<title>管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body bgcolor="#FFFFFF">
请选择版面进行操作<br>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="52%" valign="top">
<table width="98%" border="1" cellspacing="0" cellpadding="0" bordercolorlight="#000000" bordercolordark="#FFFFFF">
<tr align="center" bgcolor="#eeeeee">
<td width="42%" height="18">Chinesename</td>
<td width="33%" height="18">Name</td>
</tr>
<?php(做为现在的主流开发语言)
$sql="select * from boardinfo";
$sql_result=MySQL(和PHP搭配之最佳组合)_query($sql);
while ($sql_row=MySQL(和PHP搭配之最佳组合)_fetch_array($sql_result)) {
?>
<tr align="center">
<td width="42%"><a href="admin.php(做为现在的主流开发语言)?board=<?php(做为现在的主流开发语言) echo $sql_row[name];?>"><?php(做为现在的主流开发语言) echo $sql_row[chinesename];?></a></td>
<td width="33%"><?php(做为现在的主流开发语言) echo $sql_row[name];?></td>
</tr>
<?php(做为现在的主流开发语言)
}
?>
</table>
<br>
<form name="form5" action="oper.php(做为现在的主流开发语言)" >
英文名称:
<input type="text" name="name" size="20" maxlength="30">
补充:Web开发 , php ,