create table bbsrow( bbsrow_id int(6) not null auto_increment, //贴子ID号 bbsrow_auth varchar(20) not null, //贴子作者 bbsrow_parentid int(6), //贴子的父亲贴子ID号,如为首发贴则为空 bbsrow_title varchar(200) not null, //贴子标题 bbsrow_returncount int(3), //贴子的回复贴数,如果没有回贴则为空 primary key (bbsrow_id) ); -----------------------------------------------------------------------------*/
//显示儿子贴的递归函数-------------------------------------------------- function showchildren($parent_id){ global $connect_id; $query="select * from bbsrow where bbsrow_parentid='" . $parent_id . "'"; $result_top=mysql_query($query,$connect_id); echo "
$connect_id=mysql_connect("localhost","test","test") or die("无法连接数据库"); mysql_select_db("bbs") or die("无法选择数据库"); $query="select * from bbsrow where bbsrow_parentid=''"; $result=mysql_query($query,$connect_id);
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn