最新赞助活动温馨提示:自愿赞助服务器费用,学生和没有工作的整站资源免费下载!
头像

BBS(php & mysql数据库)完整版(二)_php基础

来源:http://erdangjiade.com/topic/123556.html 你好,世界。 2017-10-04 21:03浏览(29)

//此页面为look.php
<?
include "signup/mysql.inc";
$sql="select * from ".$table." where id='$id'";
$result=mysql_query($sql)or die(mysql_error());
$row=mysql_fetch_array($result);
$number=++$row["number"];

$sql="update $table set number='$number' where id='$id'";
mysql_query($sql)or die(mysql_error());




?>

<html>
<head>
<title>xiaoyang</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<?

include "js/menuhead.php"
?>

<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>

<body bgcolor="#FFFFFF" text="#000000">
<?

include "js/menu.php";
?>





<p id="Layer6" style="position:absolute; left:409px; top:29px; width:118px; height:17px; z-index:1"></p>
<p id="Layer5" style="position:absolute; left:63px; top:61px; width:464px; height:303px; z-index:2">

<table width="100%" border="1" cellspacing="0" cellpadding="0" bordercolor="#FFCCFF">
<tr>

<td width="22%" height="17">
<p align="center"><font color="#FF3399" size="2">题目</font></p>
</td>

<td width="78%" height="17">
<p align="center"><font size="2" color="#9966FF"><?echo $row["title"] ;?></font> </p>
</td>
</tr>
<tr>
<td width="22%" height="24">
<p align="center"><font color="#FF3399" size="2">作者</font></p>
</td>

<td width="78%" height="24">
<p align="center"><font size="2" color="#9966FF"><?echo $row["userid"] ;?></font> </p>
</td>
</tr>
<tr>
<td width="22%">
<p align="center"><font color="#FF3399" size="2">内容</font></p>
</td>

<td width="78%">
<p align="left"><font size="2" color="#9966FF"><? $file=explode("n",$row["content"]); $num=count($file);
for($i=0 ;$i<$num;$i++) echo " ".$file[$i]."<BR>";?></font></p>
</td>
</tr>
</table>




<?


for($j=1;$j<6;$j++) //显示回复内容
{
$re="r".$j;
if($row["$re"])
{
$id2=$row["$re"];
$sql="select * from bbs_re where id='$id2'";
$result=mysql_query($sql)or die(mysql_error());
$row8=mysql_fetch_array($result);
echo "<BR>";
echo " <table width=100% border=1 cellspacing=0 cellpadding=0 bordercolor=#FFCCFF> <tr>";
echo " <td width=22% height=17> <p align=center><font color=#FF3399 size=2>题目</font></p>";
echo " </td> <td width=78% height=17>";
echo " <p align=center><font size=2 color=#9966FF>".$row8["title"]."</font> </p> </td> </tr> <tr>";
echo "<td width=22% height=24>";
echo "<p align=center><font color=#FF3399 size=2>作者</font></p></td>";
echo " <td width=78% height=24>";
echo "<p align=center><font size=2 color=#9966FF>".$row8["userid"]." </font> </p></td> </tr><tr>";
echo " <td width=22%><p align=center><font color=#FF3399 size=2>内容</font></p>";
echo "</td> <td width=78%>";
echo "<p align=left><font size=2 color=#9966FF>"; $file=explode("n",$row8["content"]);
$num=count($file);
for($i=0 ;$i<$num;$i++) echo " ".$file[$i]."<BR>";
echo "</font></p>";
echo " </td> </tr> </table>";
}
}

?>

<BR><BR>
</p>
<p id="back" style="position:absolute; left:455px; top:30px; width:85px; height:3px; z-index:3">
<hr color="#ff9999" noshade>
</p>
<p id="goback" style="position:absolute; left:461px; top:23px; width:120px; height:16px; z-index:2">
<p align="center"><a href="php3.php?p=1&&table=<?echo $table ;?>" target="_self" onMouseOver="window.status=''; return true"><font size="2" color="#FF33FF">返回</font></a></p>
</p>
<p id="Lay" style="position:absolute; left:70px; top:30px; width:85px; height:3px; z-index:4">
<hr noshade color="#ff9999">
</p>
<p id="Laye" style="position:absolute; left:78px; top:23px; width:120px; height:16px; z-index:1">
<p align="center"><a href="say.php?id1=<? echo $id."&&table=".$table ;?>" target="_self" onMouseOver="window.status='';return true"><font size="2" color="#FF33FF">回复</font></a></p>
</p>
<p> </p>
<p> </p>
</body>
</html>
评论0
头像

友情提示:垃圾评论一律封号 加我微信:826096331拉你进VIP群学习群

1 2