一个模仿oso的php论坛程序源码(之三)

 更新时间:2007年03月11日 00:00:00   作者:  

</td> 
  </tr> 
  <tr>  
    <td width="390" class="text">共有帖子 <font color="#ff0000"> 
    <? 
     print $li_replycount; 
    ?> 
    </font> 个,已阅读 <font color="#ff0000"> 
    <? 
     print $li_readcount; 
    ?> 
    </font> 次</td> 
    <td colspan="3">&nbsp;</td> 
  </tr> 
</table> 
<? 
//显示帖子的所有内容 
$ls_query = 'select content,replyman,replytime,replyemail,replyhttp,replyface from fr_t_forumcontent '; 
$ls_query =  $ls_query. ' where id = '.$theme_id.' order by replytime'; 
$res = mysql_query($ls_query, $dbh);  
$li_tempr = 0; 
while ($row = mysql_fetch_array($res)) {  
  if ($li_tempr == 0) { 
  $li_tempr = 1;   
  print '<table width="100%" border="0" bgcolor="#CCCCCC">'; 
  print '  <tr bgcolor="#dedede" bordercolor="#CCCCFF"> '; 
  print ' <td class="text" height="19" valign="top" width="5%"> <div align="left">'; 
  print '  <img src="icon'.$row["replyface"].'.gif" width="18" height="18" ></div> </td>'; 
  print '    <td class="text" height="19" valign="top" width="20%"> '; 
  print '      <div align="left"><font color="#3333FF">作者:'.$row["replyman"].'</font></div>'; 
  print '    </td>'; 
  print '    <td class="text" height="19" valign="top" width="25%">'; 
  print  ' <font color="#3333FF">发表于:'.$row["replytime"].'</font></td>'; 
  print '    <td class="text" height="19" valign="top" width="25%">'; 
  print ' <font color="#3333FF">E_mail:'.$row["replyemail"].'</font></td>'; 
  print '    <td class="text" height="19" valign="top" width="25%">'; 
  print '<font color="#3333FF">'.$row["replyhttp"].' </font></td>'; 
  print '  </tr>'; 
  print '  <tr bgcolor="#dedede" bordercolor="#CCCCFF"> '; 
  print '    <td class="text" height="22" valign="top" colspan="5"> '; 
  print '      <p><font color="#3333FF">'.$row["content"].'</font></p>'; 
  print '    </td>'; 
  print '  </tr>'; 
  print '</table>'; 
  } 
  else { 
$li_tempr = 0;   
print '<table width="100%" border="0" bgcolor="#CCCCCC">'; 
print '  <tr bgcolor="#ededed"> '; 
print ' <td class="text" height="19" valign="top" width="5%"> <div align="left">'; 
print '  <img src="icon'.$row["replyface"].'.gif" width="18" height="18" ></div> </td>'; 
print '    <td class="text" height="19" valign="top" width="20%" bgcolor="#ededed"> '; 
print '      <div align="left"><font color="#000099">作者:'.$row["replyman"].'</font></div>'; 
print '    </td>'; 
print '    <td class="text" height="19" valign="top" width="25%">'; 
print ' <font color="#000099">发表于:'.$row["replytime"].' </font></td>'; 
print '    <td class="text" height="19" valign="top" width="25%">'; 
print '<font color="#000099">E_mail:'.$row["replyemail"].'</font></td>'; 
print '    <td class="text" height="19" valign="top" width="25%">'; 
print '<font color="#000099">'.$row["replyhttp"].' </font></td>'; 
print '  </tr>'; 
print '  <tr bgcolor="#ededed"> '; 
print '    <td class="text" height="22" valign="top" colspan="5"> '; 
print '      <p><font color="#000099">'.$row["content"].'</font></p>'; 
print '    </td>'; 
print '  </tr>'; 
print '</table>'; 


?> 
<? 
  include ("c:mydbfooter.inc"); 
?> 
</HTML> 
---------- 
http://zhangcg.yeah.net 

相关文章

最新评论