1資料庫鏈結檔案
在程式開發過程中,有很多地方涉及到資料庫的應用.在應用資料庫之前,首先要與資料庫建立鏈結,因此講資料庫鏈結作為乙個公共模組
2文字字元轉換
在輸出資料庫的資料過程中,有必要講資料中的一些特殊字元轉換成html識別符號,講其作為乙個公共模組來處理
公用模組**如下:
1.資料庫鏈結檔案
<?php2.將文字中字元轉換成html識別符號$conn=mysql_connect("localhost","root","111"); //資料庫鏈結
mysql_select_db("db_guestbook",$conn); //鏈結指定的資料庫
mysql_query("set names gb2312"); //對資料中的編碼進行格式轉化,避免出現中文亂碼
?>
<?php
function unhtml($content)
//用於擷取一段字串的函式msubstr,$str是字串,$start是起始為止,$len是長度
function msubstr($str,$start,$len)
else //如果不是漢子,則每次取以為字元
}return $tmpstr; //輸出字串
}?>
留言板骨架
顯示頁 form action lyb index.php index insert.html method post input name text type text value 表單提交 action位址要換成thinkphp裡的u方法,也就是去控制器裡找方法,這個方法負責接收post來的資料...
php學習之留言板
在對php語法有一定了解之後開始,這是第乙個php練手專案,涵蓋的知識有 root addmess.php delmess.php index.php show.php commom view head.html common lyfile.php css bootstrap.min.css dat...
簡單PHP留言板之五 留言列表
檔名 list.php 說明 mysql fetch array mysql fetch array data,array type 函式從結果集中取得一行作為關聯陣列,或數字陣列,或二者兼有 返回根據從結果集取得的行生成的陣列,如果沒有更多行則返回 false。data 可選。規定規定要使用的資料...