Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[疑难] 如何在模板文件.html.php中用SQL语句?

[复制链接]
lgkobe 发表于 2008-1-4 18:17:28 | 显示全部楼层 |阅读模式
我想自己做个模板文件,里面有一些查询数据库的代码,但发现运行不了,是不是supesite过滤了SQL语句?请问各位高手如何解决这个问题??
下面是我的代码:
  1. <?php
  2. session_start();
  3. if($_SESSION[priviageName]!="operator"){
  4.         header("Location:loginError.php");
  5. }
  6. include("conn/conn.php");
  7. ?>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  12. <title>主机列表</title>
  13. </head>
  14. <body>
  15. <?php
  16. $query="SELECT Pc_Id,Content FROM pc";
  17. $result=mysqli_query($id,$query);
  18. print '<table border="1" align="center">';
  19. print '<tr><td clospan="2">主机列表</td></tr>';
  20. while ($row=mysqli_fetch_array($result)){
  21.         $sid=$row[Pc_Id];
  22.         print '<form name="pclist" method="POST" action="pcdetail.php?lmbs='.$sid.'">';
  23.         print '<tr><td>'.$row[Pc_Id].'</td>';
  24.         print '<td>'.$row[Content].'</td>';
  25.         print '<td><input type="submit" name="Submit" value="查看" /></from></td>';
  26.         print '</tr></form>';
  27. }
  28. print '</table>';
  29. ?>
  30. </body>
  31. </html>
复制代码
jwzhan 发表于 2008-1-4 21:12:18 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

 楼主| lgkobe 发表于 2008-1-4 22:49:48 | 显示全部楼层
怎么就只有水帖
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2025-1-11 19:56 , Processed in 0.023621 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表