搜尋
首頁後端開發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的角色超越炒作:評估當今PHP的角色Apr 12, 2025 am 12:17 AM

PHP在現代編程中仍然是一個強大且廣泛使用的工具,尤其在web開發領域。 1)PHP易用且與數據庫集成無縫,是許多開發者的首選。 2)它支持動態內容生成和麵向對象編程,適合快速創建和維護網站。 3)PHP的性能可以通過緩存和優化數據庫查詢來提升,其廣泛的社區和豐富生態系統使其在當今技術棧中仍具重要地位。

PHP中的弱參考是什麼?什麼時候有用?PHP中的弱參考是什麼?什麼時候有用?Apr 12, 2025 am 12:13 AM

在PHP中,弱引用是通過WeakReference類實現的,不會阻止垃圾回收器回收對象。弱引用適用於緩存系統和事件監聽器等場景,需注意其不能保證對象存活,且垃圾回收可能延遲。

解釋PHP中的__ Invoke Magic方法。解釋PHP中的__ Invoke Magic方法。Apr 12, 2025 am 12:07 AM

\_\_invoke方法允許對象像函數一樣被調用。 1.定義\_\_invoke方法使對象可被調用。 2.使用$obj(...)語法時,PHP會執行\_\_invoke方法。 3.適用於日誌記錄和計算器等場景,提高代碼靈活性和可讀性。

解釋PHP 8.1中的纖維以進行並發。解釋PHP 8.1中的纖維以進行並發。Apr 12, 2025 am 12:05 AM

Fibers在PHP8.1中引入,提升了並發處理能力。 1)Fibers是一種輕量級的並發模型,類似於協程。 2)它們允許開發者手動控制任務的執行流,適合處理I/O密集型任務。 3)使用Fibers可以編寫更高效、響應性更強的代碼。

PHP社區:資源,支持和發展PHP社區:資源,支持和發展Apr 12, 2025 am 12:04 AM

PHP社區提供了豐富的資源和支持,幫助開發者成長。 1)資源包括官方文檔、教程、博客和開源項目如Laravel和Symfony。 2)支持可以通過StackOverflow、Reddit和Slack頻道獲得。 3)開發動態可以通過關注RFC了解。 4)融入社區可以通過積極參與、貢獻代碼和學習分享來實現。

PHP與Python:了解差異PHP與Python:了解差異Apr 11, 2025 am 12:15 AM

PHP和Python各有優勢,選擇應基於項目需求。 1.PHP適合web開發,語法簡單,執行效率高。 2.Python適用於數據科學和機器學習,語法簡潔,庫豐富。

php:死亡還是簡單地適應?php:死亡還是簡單地適應?Apr 11, 2025 am 12:13 AM

PHP不是在消亡,而是在不斷適應和進化。 1)PHP從1994年起經歷多次版本迭代,適應新技術趨勢。 2)目前廣泛應用於電子商務、內容管理系統等領域。 3)PHP8引入JIT編譯器等功能,提升性能和現代化。 4)使用OPcache和遵循PSR-12標準可優化性能和代碼質量。

PHP的未來:改編和創新PHP的未來:改編和創新Apr 11, 2025 am 12:01 AM

PHP的未來將通過適應新技術趨勢和引入創新特性來實現:1)適應云計算、容器化和微服務架構,支持Docker和Kubernetes;2)引入JIT編譯器和枚舉類型,提升性能和數據處理效率;3)持續優化性能和推廣最佳實踐。

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.能量晶體解釋及其做什麼(黃色晶體)
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳圖形設置
3 週前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您聽不到任何人,如何修復音頻
3 週前By尊渡假赌尊渡假赌尊渡假赌
WWE 2K25:如何解鎖Myrise中的所有內容
3 週前By尊渡假赌尊渡假赌尊渡假赌

熱工具

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

MantisBT

MantisBT

Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

強大的PHP整合開發環境

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

SecLists

SecLists

SecLists是最終安全測試人員的伙伴。它是一個包含各種類型清單的集合,這些清單在安全評估過程中經常使用,而且都在一個地方。 SecLists透過方便地提供安全測試人員可能需要的所有列表,幫助提高安全測試的效率和生產力。清單類型包括使用者名稱、密碼、URL、模糊測試有效載荷、敏感資料模式、Web shell等等。測試人員只需將此儲存庫拉到新的測試機上,他就可以存取所需的每種類型的清單。