Home >Backend Development >PHP Tutorial >merry lonely christmas BBSphp & mysql full version one
//此页面为say.php
include "signup/mysql.inc";
if($id1){
$sql="select * from $table where"; //显示回复题目
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
$title="RE:".$row["title"];
}
$ip=$REMOTE_ADDR;
$sql="select * from user_stus where ip='$ip'"; //查询当前用户名
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
if(!$row) //判断用户是否登陆
{
echo "
The above introduces the complete version of merry lonely christmas BBSphp & mysql, including the content of merry lonely christmas. I hope it will be helpful to friends who are interested in PHP tutorials.