聊天室php&mysql(一)


Posted in PHP onOctober 09, 2006

//第一个页面  name="index1.php"

<?

include "../signup/mysql.php";
$time1=time();
//$userid=983530409;
echo $n;

if($n==1){
$userid=time();
$nick="g".$userid;
$last_time=$userid;
$sql="insert into chat_user (userid,id,last_time) values ('$userid','$nick','$last_time')";
mysql_query($sql)or die(mysql_error());

$sql="insert into chat_user_list (userid,id,last_time) values ('$userid','$nick','$last_time')";
mysql_query($sql)or die(mysql_error());

echo"<FONT SIZE=6 COLOR=#FF0066><B>LOADING ........</B></FONT>";
echo "<script language='JavaScript'> window.open('index1.php?userid=".$userid."','chat','toolbar=no,directories=no,menubar=no,width=800,height=570,left=0,top=0,status=0');";

echo" window.close() </script>";

}

if($n==983530409)
{

$sql="select userid,sex,passwd from user where id='$n'";
$result=mysql_query($sql);
$row=mysql_fetch_array($result);
$nick=$row["userid"];
$passwd=$row["passwd"];
$sex=$row["sex"];

$sql="insert into chat_user (userid,passwd,sex,last_time,id)values('$n','$passwd','$sex','$time1','$nick')";
mysql_query($sql)or die(mysql_error());

echo"<FONT SIZE=6 COLOR=#FF0066><B>LOADING ........</B></FONT>";
echo "<script language='JavaScript'> window.open('index1.php?userid=".$n."','chat','toolbar=no,directories=no,menubar=no,width=800,height=570,left=0,top=0,status=0');";

echo" window.close(); </script>";
}

?>
<html>
<head>
<title>::: FEIT聊天室 :::</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
// -->
</script>
</head>
<frameset cols="*,132" frameborder="NO" border="0" framespacing="0" rows="*">  
  <frameset rows="*,111" frameborder="NO" border="0" framespacing="0" cols="*">  
    <frame name="top" src="index.php?userid=<? echo $userid?>" scrolling="AUTO">
    <frame name="bottom" scrolling="NO" noresize src="frame3.php?userid=<? echo $userid ?>">
  </frameset>
  <frameset rows="*,110" frameborder="NO" border="0" framespacing="0">  
    <frame name="right" scrolling="AUTO" noresize src="frame2.php?userid=<? echo $userid?>">
    <frame name="bottomFrame" scrolling="NO" noresize src="frame4.php">
  </frameset>
</frameset>
<noframes>  
<body bgcolor="#FFFFFF" text="#000000">
<p>很抱歉!这是一个分帧页面,但由于你的浏览器不支持,所以不能浏览! </p>
<p>Sorry!This page uses frames,but your browser doesn't support them .</p>
</body>
</noframes>  
</html> 

PHP 相关文章推荐
十天学会php之第一天
Oct 09 PHP
PHP用SAX解析XML的实现代码与问题分析
Aug 22 PHP
PHP获取MAC地址的函数代码
Sep 11 PHP
PHP取二进制文件头快速判断文件类型的实现代码
Aug 05 PHP
PHP中spl_autoload_register函数的用法总结
Nov 07 PHP
PHP解码unicode编码的中文字符代码分享
Aug 13 PHP
在Windows XP下安装Apache+MySQL+PHP环境
Feb 22 PHP
php实现的微信红包算法分析(非官方)
Sep 25 PHP
学习PHP session的传递方式
Jun 15 PHP
注意!PHP 7中不要做的10件事
Sep 18 PHP
php 自定义错误日志实例详解
Nov 12 PHP
laravel框架数据库操作、查询构建器、Eloquent ORM操作实例分析
Dec 20 PHP
建立文件交换功能的脚本(三)
Oct 09 #PHP
建立文件交换功能的脚本(一)
Oct 09 #PHP
建立文件交换功能的脚本(二)
Oct 09 #PHP
深入了解php4(2)--重访过去
Oct 09 #PHP
深入了解php4(1)--回到未来
Oct 09 #PHP
网站当前的在线人数
Oct 09 #PHP
WML,Apache,和 PHP 的介绍
Oct 09 #PHP
You might like
vBulletin Forum 2.3.xx SQL Injection
2006/10/09 PHP
PHP CURL获取cookies模拟登录的方法
2013/11/04 PHP
PHP中__FILE__、dirname与basename用法实例分析
2014/12/01 PHP
Laravel框架路由设置与使用示例
2018/06/12 PHP
Ajax+Jpgraph实现的动态折线图功能示例
2019/02/11 PHP
PHP错误提示It is not safe to rely on the system……的解决方法
2019/03/25 PHP
Js callBack 返回前一页的js方法
2008/11/30 Javascript
Js 随机数产生6位数字
2010/05/13 Javascript
从jQuery.camelCase()学习string.replace() 函数学习
2011/09/13 Javascript
给ListBox添加双击事件示例代码
2013/12/02 Javascript
原生javascript模仿win8等待提示圆圈进度条
2014/04/24 Javascript
BootStrap的alert提示框的关闭后再显示怎么解决
2016/05/17 Javascript
Bootstrap选项卡动态切换效果
2016/11/28 Javascript
关于Bootstrap按钮组件消除黄框的方法
2017/05/19 Javascript
bing Map 在vue项目中的使用详解
2018/04/09 Javascript
详解微信小程序canvas圆角矩形的绘制的方法
2018/08/22 Javascript
vue根据进入的路由进行原路返回的方法
2018/09/26 Javascript
[47:42]完美世界DOTA2联赛PWL S2 GXR vs Ink 第一场 11.19
2020/11/20 DOTA
用Python中的wxPython实现最基本的浏览器功能
2015/04/14 Python
python访问系统环境变量的方法
2015/04/29 Python
python中self原理实例分析
2015/04/30 Python
深入学习python的yield和generator
2016/03/10 Python
Python学习笔记之open()函数打开文件路径报错问题
2018/04/28 Python
Python之dict(或对象)与json之间的互相转化实例
2018/06/05 Python
python发送告警邮件脚本
2018/09/17 Python
Django 后台带有字典的列表数据与页面js交互实例
2020/04/03 Python
从python读取sql的实例方法
2020/07/21 Python
如何用Python进行时间序列分解和预测
2021/03/01 Python
美丽的现代设计家具:2Modern
2018/07/26 全球购物
开业庆典邀请函
2014/01/08 职场文书
学校七一活动方案
2014/01/19 职场文书
党员教师工作决心书
2014/03/13 职场文书
导游词之无锡梅园
2019/11/28 职场文书
浅谈redis五大数据结构和使用场景
2021/04/12 Redis
position:sticky 粘性定位的几种巧妙应用详解
2021/04/24 HTML / CSS
python基础之模块的导入
2021/10/24 Python