仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 2889|回复: 18
打印 上一主题 下一主题

[学习教程] PHP编程:用PHP3作树型目次(1)

[复制链接]
小妖女 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-2-16 00:29:17 | 显示全部楼层 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
学习如何将PHP与HTML结合起来完成简单动态页面   <? function style(){
   echo"<style>";
   echo"<!--";
   echo"a{font-size:9pt;color:blue}";
   echo"-->";
   echo"</style>";
   }
function GetMessages($msgStart,$number,$type){
  $conn=mysql_connect("localhost","207","");
  mysql_select_db("test");
  $sql="select*from message where fatheird=-1 and type=";
  $sql=$sql.$type;
  $sql=$sql."order by time desc LIMIT ";
  $sql=$sql.$msgStart;
  $sql=$sql.",";
  $sql=$sql.$number;
  $result= mysql_query($sql,$conn);
  if(!$result){
  mysql_close($conn);
  $msgs[0]=0;
  return $msgs;
  }
  $count=0;
  while ($obj=mysql_fetch_object($result)){
  $count++;
  $msgs[$count]=$obj;
}
  $msgs[0]=$count;
  mysql_close($conn);
  return $msgs;
  }
  function InsertMessage($msg){
  if(!(($msg["title"])&&($msg["author"])&&($msg["time"]))){
  return 0;
  exit;
  }
  $conn=mysql_connect("localhost","207","");
  mysql_select_db("test");
  $sql="insert into message(title,body,author,fatherid,time,type)values('";
  $sql=$sql.getsafestring($msg["title"]);
  $sql=$sql."','";
  $sql=$sql.getsafestring($msg["body"]);
  $sql=$sql."','";
  $sql=$sql.$msg["author"];
  $sql=$sql."',";
  $sql=$sql.$msg["fatherid"];
  $sql=$sql.",'";
  $sql=$sql.$msg["time"];
  $sql=$sql."',";
  $sql=$sql.$msg["type"];
  $sql=$sql.")";
  $result=mysql_query($sql,$conn);
  mysql_close($conn);
  return $result;
}
function getmessagebyfather($fatherid){
$conn=mysql_connect("localhost","207","");
mysql_select_db("test");
$sql="select*from message where fatherid=";
$sql=$sql.$fatherid;
$sql=$sql."order by time desc";
$result=mysql_query($sql,$conn);
if(!$result){
mysql_close($conn);
$msgs[0]=0;
return $msgs;
}
$count=0;
while($obj=mysql_fetch_object($result)){
$count++;
$msgs[$count]=$obj;
$msgs[$count]->child=getmessagebyfather($obj->id);
}
$msgs[0]=$count;
return $msgs;
}
$count=0;
while ($obj=mysql_fetch_object($result)){
$count++;
$msgs[$count]=$obj;
$msgs[$count]->child=getmessagebyfather($obj->id);
}
$msgs[0]=$count;
return $msgs;
}
function getmsgcount($type){
   $conn=mysql_connect("localhost","207","");
   mysql_select_db("test");
   $sql="select count(*)from message where fatherid=-1 and type=";
   $sql=$sql.$type;
   $result=mysql_query($sql,$conn);
   $count=mysql_result($result,0);
   mysql_colse($conn);
   return $count;
}
function getmessagebyid($id){
   $conn=mysql_connect("localhost","207","");
   mysql_select_db("test");
   $sql="select*from messgae where id=".$id;
   $result=mysql_query($sql,$conn);
   if(!$result)
    return 0;
}
  $obj=mysql_fetch_object($result);
  mysql_colse($conn);
  return $obj;
}
  function getsafestring($string){
  $string=str_replace("<","<",$string);
  $string=str_replace(">",">",$string);
  $string=str_replace("'","",$string);
  $string=str_replace("\n","<br>",$string);
  $string=str_replace(" ","",$string);
  return $string
}
  从刚开始练习的PHP基础语法练习,到PHP语言在WEB中的应用,再到实际的项目开发,如留言版,相册系统,中小型公司网站系统,以及期间做过的有关团队合作的小游戏,让我受益匪浅,学到了很多。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-5-5 19:14

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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