第一種,使用smarty模板引擎
綿陽網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),綿陽網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為綿陽上千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的綿陽做網(wǎng)站的公司定做!
php文件:
$smarty-assign('data','hello world');
$smarty-display('index.html');
index.html文件:
div{$data}/div
輸出hello world
第二種,使用PHP變量直接輸出
php文件:
$data = 'hello world';
require 'index.html';
index.html:文件:
div?php echo $data;?/div
你是不是想問php如何讓獲取數(shù)據(jù)庫內(nèi)容并傳到前端
$serverName = "localhost";//數(shù)據(jù)庫地址這是本地的
$sqlUserName = "root";//數(shù)據(jù)庫管理員賬號
$sqlPwd = "root123";//數(shù)據(jù)庫管理員密碼
$dBName = "phptest";//數(shù)據(jù)庫表名
$port="3308";//端口
//mysqli連接數(shù)據(jù)庫語句正確返回true錯誤返回false
$link = @mysqli_connect($serverName,$sqlUserName,$sqlPwd,$dBName,$port);
if($link) {
mysqli_query($link,'set names utf8');
$sql = " select * from adminhtmlval ";//查詢語句
$query = mysqli_query($link,$sql);//mysqli執(zhí)行語句e
if ($query){
$i=0;
while ($arr = mysqli_fetch_array($query)){
$navArr[$i] = $arr;
$i++;
//頁面直接調(diào)用$navArr,也可以在這個循環(huán)體內(nèi)直接輸出
}
1、連接數(shù)據(jù)庫服務(wù)器,選擇數(shù)據(jù)庫
2、執(zhí)行查詢語句
3、提取數(shù)據(jù)庫表中具體字段的值放到數(shù)組中
4、在表單中要顯示出來的話,使用?php echo $rows['字段名'];?給value賦值即可在表單中顯示出來