一个模仿oso的php论坛程序源码(之三)第1/2页

程序三:readforum.php 
<HTML> 
<HEAD> 
<TITLE> 论坛信息 </TITLE> 
<link rel="STYLESHEET" type="text/css" href="fp_zhangcg.css"> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
<meta name="Microsoft Theme" content="none"> 
<meta name="Microsoft Border" content="none"> 
<META NAME="Generator" CONTENT="EditPlus"> 
<META NAME="Author" CONTENT=""> 
<META NAME="Keywords" CONTENT=""> 
<META NAME="Description" CONTENT=""> 
</HEAD> 
<body bgcolor="#C0C0C0" background="backcolor.GIF"> 
<? 
  include ("c:mydbheader.inc"); 
?> 
<?php  
//完成功能: 
//echo $username; 
//echo $useremail; 
//echo $userhttp; 
//echo $forumtitle; 
//echo $fouumface; 
//echo $forumcontent;  
//echo $theme_id; 
echo 'g_username:'.$GLOBALS["g_username"].' is ok'; 
$dbh = mysql_connect('localhost:3306','root',''); 
mysql_select_db('test');  
if (empty($readflag)) { 
   $readflag = 0; 
}  
if ($readflag > 0) { 
   $theme_id = $readflag; 

if (empty($theme_id)) { 
   $theme_id = 0; 
}  
//echo $username; 
//echo $useremail; 
//echo $userhttp; 
//echo $forumtitle; 
//echo $fouumface; 
//echo $forumcontent;  
if (($readflag == 0) and ($theme_id == 0)) {   //增加数据 
    if (empty($username)) { 
       print "错误,请核对数据"; 
    } 
     $res=mysql_query("SELECT max(id) + 1 AS rid FROM fr_t_forumtitle",$dbh);   
    $row=mysql_fetch_array($res); 
    if (empty($row["rid"])) { 
       $theme_id = 1;   
    } else { 
      $theme_id = $row["rid"] + 1;   
    } 
    $tempstr = " insert into fr_t_forumtitle(id,state,readcount,replycount,title,"; 
    $tempstr = $tempstr."createman,replytime) "; 
    $tempstr = $tempstr." values(".$theme_id.",'0',0,-1,'".$forumtitle."','".$username."',now());"; 
    $res=mysql_query($tempstr,$dbh); 

if ($readflag == 0 ) { 
    $forumcontent =  nl2br($forumcontent); 
    $tempstr = " insert into fr_t_forumcontent(id,content,replyman,replyemail,"; 
    $tempstr = $tempstr."replyhttp,replytime,replyface)"; 
    $tempstr = $tempstr." values(".$theme_id.",'".$forumcontent."','".$username."','". 
        $useremail."','".$userhttp."',now(),".$forumface.");"; 
    $res=mysql_query($tempstr,$dbh); 
    $tempstr = " update fr_t_forumtitle set readcount = readcount +1,replycount = replycount + 1,"; 
    $tempstr = $tempstr."replytime = now(),replyman ='".$username."' where id=".$theme_id;  
    $res=mysql_query($tempstr,$dbh); 
} else { 
    $tempstr = " update fr_t_forumtitle set readcount = readcount +1 where id =".$theme_id; 
    $res=mysql_query($tempstr,$dbh); 

?> 
<table width="100%" border="0"> 
<tr class="text">  
<td width="50%">  <div align="left">当前位置:主页——论坛——论坛内容</div> </td> 
<td width="50%">  <div align="center">&nbsp</div> </td> 
</table> 
<? 
    $tempstr = " select title,readcount,replycount from fr_t_forumtitle where id = ".$theme_id; 
     $res=mysql_query($tempstr,$dbh);   
    $row=mysql_fetch_array($res);   
    $ls_theme_title = $row["title"];   
    $li_readcount   = $row["readcount"];   
    $li_replycount  = $row["replycount"] + 1;   
?> 
<table width="100%" border="0"> 
  <tr>  
    <td width="61%" class="text">主题:<span class="text"><font color="#ff0000"> 
      <? 
        print $ls_theme_title; 
      ?> 
    </font></span></td> 
    <td width="13%">  
      <div align="center"><a href="addforum.php?theme_id=0" target="_top"><img src="post.gif" width="80" height="20" alt="加新贴字" border="0"></a></div> 
    </td> 
    <td width="13%">  
    <? 
      print '<div align="center"><a href="addforum.php?theme_id='.$theme_id.'"'; 
      print 'target="_top"><img src="reply.gif" width="80" height="20"'; 
      print 'alt="回复贴字" border="0"></a></div>'; 
    ?> 
    </td> 
    <td width="13%">  
      <div align="center"><a href="mainforum.php" target="_top"><img src="theme.gif" width="80" height="20" alt="主题列表" border="0"></a></div>

当前1/2页 12下一页阅读全文

(0)

相关推荐

  • 一个模仿oso的php论坛程序源码(之三)第1/2页

    程序三:readforum.php  <HTML>  <HEAD>  <TITLE> 论坛信息 </TITLE>  <link rel="STYLESHEET" type="text/css" href="fp_zhangcg.css">  <meta http-equiv="Content-Type" content="text/html; char

  • 一个模仿oso的php论坛程序源码(之二)第1/3页

    程序二:addforum.php  <html>  <head>  <link rel="STYLESHEET" type="text/css" href="fp_zhangcg.css">  <meta http-equiv="Content-Type" content="text/html; charset=gb2312">  <meta name=

  • 一个模仿oso的php论坛程序(之一)第1/2页

    我经常使用oso的论坛,个人感觉挺好的,因此模仿oso的界面编了一个程序,与大家共享.  程序由三部分组成,即显示主题信息,显示论坛信息,增加论坛信息,主题与论坛内容采用主从表关系.  表结构如下:  drop table fr_t_forumtitle;  create table fr_t_forumtitle(     id         integer,     state      varchar(1),     readcount  integer,     replycount 

  • 实时获取股票数据的android app应用程序源码分享

    最近学习Android应用开发,不知道写一个什么样的程序来练练手,正好最近股票很火,就一个App来实时获取股票数据,取名为Mystock.使用开发工具Android Studio,需要从Android官网下载,下载地址:http://developer.android.com/sdk/index.html.不幸的是Android是Google公司的,任何和Google公司相关的在国内都无法直接访问,只能通过VPN访问. 下图为Android Studio打开一个工程的截图: 下面按步介绍Myst

  • WPF实现类似360安全卫士界面的程序源码分享

    下面通过图文并茂的方式给大家介绍WPF实现类似360安全卫士界面的程序源码分享,点击此处下载源码哦. 以前学习Windows Form编程的时候,总感觉自己做的界面很丑,看到360安全卫士.迅雷等软件的UI设计都非常美观,心里总是憧憬着要是自己能实现这样的UI效果该多好!!!另一个困扰我的问题是,这个UI皮肤是如何用技术实现的呢?!虽然好多年过去了,但心里的憧憬和疑惑一直没有消失,而且越来越强烈.在日常的工作和学习中,自己在网上也经常留意类似的技术或者文章.最近在学习WPF的过程中,看到网上也有

  • Python写一个简单上课点名系统(附源码)

    目录 一.准备工作 1.Tkinter 2.PIL 二.预览 1.启动 2.开始点名-顺序点名 3.开始点名-随机点名 4.手动加载人名单 5.开始点名-顺序点名-Pyqt5版本 三.思路 1.整体实现思路 2.点名实现思路 四.源代码 五.总结 一.准备工作 1.Tkinter Tkinter 是 python 内置的 TK GUI 工具集.TK 是 Tcl 语言的原生 GUI 库.作为 python 的图形设计工具,它所使用的 Tcl 语言环境已经完全嵌入到了 python 解释器中. 我们

  • ActionScript 3.0中用XMLSocket与服务器通讯程序(源码)

    复制代码 代码如下: // // CXMLSocket.as // // // Written by Leezhm, 20th Oct, 2008 // Contact : Leezhm@luxoom.cn // package { import flash.events.DataEvent; import flash.events.Event; import flash.events.IEventDispatcher; import flash.events.IOErrorEvent; imp

  • C#关机小程序源码

    下面是运行的效果图 核心代码: 复制代码 代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; /* * * 整理:张晓天 * Q Q:977602650 * 日期:2012

  • 基于jquery实现一个滚动的分步注册向导-附源码

    先给大家展示效果图,需要的朋友可以下载源码哦- 查看演示        下载源码 HTML 首先要载入jquery库和滚动插件scrollable.js <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="scrollable.js"></script&

  • 一个简单的PHP投票程序源码

    分析:  我们利用一个文件(data.dat)来存储投票栏目.每个栏目占据一行.  这样一来,便可随意加入和减去想要投票的栏目.  我们再利用一个文件(votes.dat)来存储我们的投票结果.  并纪录最近一位投票者的IP地址,简单的防止一人多投.  所以,您应该在该程序目录下自行建立两个文件data.dat和votes.dat  程序运行过程部分  程序运行时应该先有一个投票的HTML表单,等待投票.  当有人在HTML表单上投票时,判断它的IP是否为最近一位投票者的IP,  如果此人刚刚投

随机推荐