index.php
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?PHP
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6.     描述:后台主页
  7. */
  8. error_reporting(0);
  9. require_once("../class/template_class.php");
  10. require_once("../class/mysql_class.php");
  11. require_once("../function/function.php");
  12. require_once("../function/func_global.php");
  13. require_once("../config.php");
  14. require_once("../config/baseCheckCode.php");
  15. require_once("../function/checkModuleSession.php");
  16. $bbwps_admin=isLogin("../$sessionPath/");
  17. $isMagic = @ini_get("magic_quotes_gpc");
  18. if(!$isMagic){
  19. if (is_array($_POST)){
  20. foreach($_POST AS $key => $value) {
  21. $_POST[$key] = addslashes($value);
  22. }
  23. }
  24. if(is_array($_GET)){
  25. foreach ($_GET as $key => $value){
  26. $_GET[$key]=addslashes($value);
  27. }
  28. }
  29. if(is_array($_COOKIE)){
  30. foreach ($_COOKIE as $key => $value){
  31. $_COOKIE[$key]=addslashes($value);
  32. }
  33. }
  34. }
  35. $prefix.=$modulePrefix;
  36. $f=$_GET["f"];
  37. $path=$_GET["p"];
  38. if(!$f||!$path){exit("Forbidden");}
  39. $db=new DB($hostname,$username,$password,$database);
  40. $p=new Template("./templates");
  41. require("./".$path."/".$f.".php");
  42. $db->__DB;
  43. unset($p,$db,$path,$f);
  44. function CheckRequire(){}
  45. function filtrateSQL($string){
  46. return $string;
  47. }
  48. ?>