搜索
首页后端开发php教程PHP经典项目案例-(1)博客管理系统3

PHP经典项目案例-(一)博客管理系统3

本篇给出首页左侧导航栏及右部公告区的实现。

六、左侧导航栏:

1、日历:

这里单独一个php文件,在显示日历的那个地方直接引用该文件即可:

cale.php

<?php class calendar{     private $year,$month,$day;     private $week=array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");     private $_month=array(         "01"=>"一月",         "02"=>"二月",         "03"=>"三月",         "04"=>"四月",         "05"=>"五月",         "06"=>"六月",         "07"=>"七月",         "08"=>"八月",         "09"=>"九月",         "10"=>"十月",         "11"=>"十一月",         "12"=>"十二月"     );     function setyear($year){    //设置年份         $this->year=$year;     }     function getyear(){   //获得年份         return $this->year;     }     function setmonth($month){    //设置月份         $this->month=$month;     }     function getmonth(){    //获得月份        return $this->month;     }     function setday($day){   //设置日期         $this->day=$day;     }     function getday(){   //获得日期         return $this->day;     }     function OUT(){   //输出日历         $this->_env(); //设置显示的日期        $week=$this->getweek($this->year,$this->month,$this->day);     //获得日期为星期几        $fweek=$this->getweek($this->year,$this->month,1);     //获得此月第一天为星期几         echo "<div style="width:255;font:9pt"> <form action="%24_SERVER%5BPHP_SELF%5D" method="'post'" style="'margin:0'"> <select name="'month'" onchange="'this.form.submit();'">";         for($ttmpa=1;$ttmpamonth)==0){                 $select="selected style='background-color:#FAFDE2'";             }else{                 $select="";             }             echo "<option value="'$ttmpb'">".$this->_month[$ttmpb]."</option>";         }         echo " </select> <select name="'year'" onchange="'this.form.submit();'">";    //输出年份,前后10年         for($ctmpa=$this->year-10;$ctmpayear+10;$ctmpa++){             if($ctmpa>2050){                 break;             }             if($ctmpayear)==0){                 $select="selected style='background-color:#FAFDE2'";             }else{                 $select="";             }             echo "<option value="'$ctmpa'">$ctmpa</option>";         }         echo "</select>         </form>
<br>        <table border="0" align="center">";         for($Tmpa=0;$Tmpa<count>week);$Tmpa++){    //输出星期的标头             echo "<td>".$this->week[$Tmpa]."</td>";         }         for($tmpb=1;$tmpbmonth,$this->day,$this->year));$tmpb++){    //输出所有日期             if(strcmp($tmpb,$this->day)==0){  //获得当前日期,并采用特色颜色做为标记                 $flag=" bgcolor='#FF3366'";             }else{                 $flag=' bgcolor=#FAFDE2';             }             if($tmpb==1){                 echo "<tr>";                 for($tmpc=0;$tmpc";                 }            }             if(strcmp($this->getweek($this->year,$this->month,$tmpb),0)==0){ //如果是周日                echo "</tr>
<tr>
<td align="'center'">$tmpb</td>";             }else{                 echo "<td align="'center'">$tmpb</td>";             }         }        echo "</tr></count>
</table>
</div>";    }     //获得方法内指定的日期的星期数     function getweek($year,$month,$day){         $week=date("w",mktime(0,0,0,$month,$day,$year));     //获得星期         return $week;   //获得星期     }     function _env(){         if(isset($_POST["month"])){             $month=$_POST["month"];         }else{             $month=date("m"); //默认为本月         }        if(isset($_POST["year"])){             $year=$_POST["year"];         }else{             $year=date("Y");    //默认为本年         }        $this->setyear($year);        $this->setmonth($month);        $date=sprintf('%1d',date('d'));        $this->setday($date);    }}     $D=new calendar;     $D->OUT(); ?>  

在index.php里面直接引用该文件

 <!-- 日历显示 --> <tr> <span style="white-space:pre">	</span><td height="155" align="center" valign="top"><?php include &#39;cale.php&#39;;?></td> </tr>

2、最新文章显示:

<!-- 最新文章显示 --><tr>
<span style="white-space:pre">	</span><td height="125" align="center" valign="top">        <table width="200" border="0" cellpadding="0" cellspacing="0">        <tr>        <span style="white-space:pre">	</span><td>                <table width="201" border="0" cellpadding="0" cellspacing="0" style="margin-top:25px" valign="top">                </table>                </td>        </tr>        <?php $sql="select id,title from tb_article order by id desc limit 5";                $res = $sqlHelper->execute_dql($sql);                $i=1;                while($info=$res->fetch_assoc()){        ?>        <tr>        <span style="white-space:pre">	</span><td width="201" align="left" valign="top">                <a href="article.php?file_id=<?php%20echo%20%24info%5B'id'%5D;?>" target="_blank"><font size="2"><?php echo $i."、".substr($info[&#39;title&#39;],0,27);?></font></a>                </td>        </tr>        <?php $i=$i+1;                }        ?>        <tr>        	<td height="10" align="right"><a href="file_more.php"><img  src="images/more.gif"    style="max-width:90%"  style="max-width:90%" border="0" alt="PHP经典项目案例-(1)博客管理系统3" >   </a></td>        </tr>        </table>        </td>
</tr>
这里我去查询数据库的时候使用了自己的工具类sqlHelper.class.php

这里给出上面用到的方法实现代码:

sqlHelper.class.php部分代码:

 class SqlHelper{                public $mysqli;        public $dbname="db_tmlog";        public $username="root";        public $password="root";        public $host="localhost";                public function __construct(){            $this->mysqli = new mysqli($this->host, $this->username, $this->password, $this->dbname);            if($this->mysqli->connect_error){                die("连接失败".$this->mysqli->connect_error);            }            $this->mysqli->query("set names utf8");        }        //执行dql语句        public function execute_dql($sql){                        $res = $this->mysqli->query($sql) or die($this->mysqli->error);            //这里返回的是一个结果集,当调用$row = $res->fetch_assoc()时是一条一条的向下走,应该使用while循环            return $res;        }                                                                                                                           <span style="font-family: Arial, Helvetica, sans-serif;">}</span>

dql语句就是简单的查询语句。

在使用数据库查询之前,先把这个文件包进去,然后new一个工具类对象,然后使用对象调用里面的函数。


3、最新图片显示

<!-- 最新图片显示 --><tr>
<span style="white-space:pre">	</span><td height="201" align="center" valign="top">
<br>        <table width="145" border="0" cellspacing="0" cellpadding="0">        <tr>        <span style="white-space:pre">	</span><td>                <table width="201" border="0" cellspacing="0" cellpadding="0" valign="top" style="margin-top:5px;">                <?php <span style="white-space:pre">	$sql="select id,tpmc,file from tb_tpsc order by id desc limit 2";			$res2 = $sqlHelper->execute_dql($sql);			while($info=$res2->fetch_assoc()){			<span style="white-space:pre">	</span>$query="select * from tb_tpsc where id=".$info['id'];                    <span style="white-space:pre">		</span>$result=$sqlHelper->execute_dql($query);                    <span style="white-space:pre">		</span>if($row = $result->fetch_assoc()){                           <span style="white-space:pre">		</span>$data = $row['file'];                    <span style="white-space:pre">		</span>}		?>		<tr>    		<span style="white-space:pre">	</span><td width="9" rowspan="2" align="center"> </td>    			<td width="147" align="center">        		<a href="image.php?recid=<?php%20echo%20%24info%5B'id'%5D;%20?>" target="_blank">        		<img  src="<?php%20echo%20%24data;?>"    style="max-width:90%"  style="max-width:90%" border="0" alt="PHP经典项目案例-(1)博客管理系统3" >        		</a>    			</td>    			<td width="10" rowspan="2" align="center"> </td>    		</tr>    		<tr>    			<td align="center">图片名称:<?php echo $info[&#39;tpmc&#39;];?>
</td>		</tr>		<?php }		?>		<tr>		<span style="white-space:pre">	</span><td colspan="3" height="10" align="right"><a href="pic_more.php"><img  src="images/more.gif"    style="max-width:90%"  style="max-width:90%" border="0" alt="PHP经典项目案例-(1)博客管理系统3" >   </a></td>		</tr>                </table>                </td>        </tr>        </table>        </td>
</tr>

同样使用了数据库查询。

4、公告区实现

在公告区使用了我以前没有见过的一个标签

它里面设置了一些属性,就是当鼠标停留在上面的时候它就停止滚动,离开的时候就开始滚动。


<?php <span style="white-space:pre">	$p_sql = "select * from tb_public order by id desc";        $p_rst = $sqlHelper->execute_dql($p_sql);?><marquee onmouseover="this.stop()" style="width:426px; height:280px" onmouseout="this.start()" scrollamount="2" scrolldelay="7" direction="up" align=""><span style="FONT-SIZE: 9pt"><center>
<?php <span style="white-space:pre">	</center></span>while($p_row = $p_rst->fetch_row()){?><a href="#" onclick="wopen=open('show_pub.php?id=<?php echo $p_row[0]; ?>','','height=200,width=1000,scollbars=no')"><?php echo $p_row[1]; ?></a><br>	 <?php }?></marquee>
这个标签是HTML5新增的,还有center标签。那么在使用的时候就会出现下面画黄色波浪线的情况,我没有去管他。

这个超链接标签里,它设置了onclick这个属性,onclick这个属性后面跟的一定是js文件里面的函数,这个是打开一个自定义宽高的窗口。href="#"表示这个超链接不连接到其他页面,这里超链接的响应使用onclick来设定了。


到这里我们的首页基本就实现了。这是index.php 的完整代码:index.php提取码:iu09


声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
PHP和Python:解释了不同的范例PHP和Python:解释了不同的范例Apr 18, 2025 am 12:26 AM

PHP主要是过程式编程,但也支持面向对象编程(OOP);Python支持多种范式,包括OOP、函数式和过程式编程。PHP适合web开发,Python适用于多种应用,如数据分析和机器学习。

PHP和Python:深入了解他们的历史PHP和Python:深入了解他们的历史Apr 18, 2025 am 12:25 AM

PHP起源于1994年,由RasmusLerdorf开发,最初用于跟踪网站访问者,逐渐演变为服务器端脚本语言,广泛应用于网页开发。Python由GuidovanRossum于1980年代末开发,1991年首次发布,强调代码可读性和简洁性,适用于科学计算、数据分析等领域。

在PHP和Python之间进行选择:指南在PHP和Python之间进行选择:指南Apr 18, 2025 am 12:24 AM

PHP适合网页开发和快速原型开发,Python适用于数据科学和机器学习。1.PHP用于动态网页开发,语法简单,适合快速开发。2.Python语法简洁,适用于多领域,库生态系统强大。

PHP和框架:现代化语言PHP和框架:现代化语言Apr 18, 2025 am 12:14 AM

PHP在现代化进程中仍然重要,因为它支持大量网站和应用,并通过框架适应开发需求。1.PHP7提升了性能并引入了新功能。2.现代框架如Laravel、Symfony和CodeIgniter简化开发,提高代码质量。3.性能优化和最佳实践进一步提升应用效率。

PHP的影响:网络开发及以后PHP的影响:网络开发及以后Apr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP类型提示如何起作用,包括标量类型,返回类型,联合类型和无效类型?PHP类型提示如何起作用,包括标量类型,返回类型,联合类型和无效类型?Apr 17, 2025 am 12:25 AM

PHP类型提示提升代码质量和可读性。1)标量类型提示:自PHP7.0起,允许在函数参数中指定基本数据类型,如int、float等。2)返回类型提示:确保函数返回值类型的一致性。3)联合类型提示:自PHP8.0起,允许在函数参数或返回值中指定多个类型。4)可空类型提示:允许包含null值,处理可能返回空值的函数。

PHP如何处理对象克隆(克隆关键字)和__clone魔法方法?PHP如何处理对象克隆(克隆关键字)和__clone魔法方法?Apr 17, 2025 am 12:24 AM

PHP中使用clone关键字创建对象副本,并通过\_\_clone魔法方法定制克隆行为。1.使用clone关键字进行浅拷贝,克隆对象的属性但不克隆对象属性内的对象。2.通过\_\_clone方法可以深拷贝嵌套对象,避免浅拷贝问题。3.注意避免克隆中的循环引用和性能问题,优化克隆操作以提高效率。

PHP与Python:用例和应用程序PHP与Python:用例和应用程序Apr 17, 2025 am 12:23 AM

PHP适用于Web开发和内容管理系统,Python适合数据科学、机器学习和自动化脚本。1.PHP在构建快速、可扩展的网站和应用程序方面表现出色,常用于WordPress等CMS。2.Python在数据科学和机器学习领域表现卓越,拥有丰富的库如NumPy和TensorFlow。

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
1 个月前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
1 个月前By尊渡假赌尊渡假赌尊渡假赌
威尔R.E.P.O.有交叉游戏吗?
1 个月前By尊渡假赌尊渡假赌尊渡假赌

热工具

MinGW - 适用于 Windows 的极简 GNU

MinGW - 适用于 Windows 的极简 GNU

这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

WebStorm Mac版

WebStorm Mac版

好用的JavaScript开发工具

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

功能强大的PHP集成开发环境

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器