1、第一種是在HTML中加PHP。
成都創(chuàng)新互聯(lián)公司致力于網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站建設(shè),成都網(wǎng)站設(shè)計(jì),集團(tuán)網(wǎng)站建設(shè)等服務(wù)標(biāo)準(zhǔn)化,推過標(biāo)準(zhǔn)化降低中小企業(yè)的建站的成本,并持續(xù)提升建站的定制化服務(wù)水平進(jìn)行質(zhì)量交付,讓企業(yè)網(wǎng)站從市場(chǎng)競(jìng)爭(zhēng)中脫穎而出。 選擇成都創(chuàng)新互聯(lián)公司,就選擇了安全、穩(wěn)定、美觀的網(wǎng)站建設(shè)服務(wù)!
head
metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/
metahttp-equiv="Content-Language"content="zh-CN"/
titleHelloWorld/title
/head
body
?php
echo"Helloworld!這是正文";
?
/body
/html
2、第二種用echo輸出HTML。
因?yàn)镠TML有的元素中有雙引號(hào),所以用echo輸出的內(nèi)容用單引號(hào)括起來,避免出錯(cuò),也省了轉(zhuǎn)義這一步。比如這樣的代碼:
?php
if(!$_POST){
echo‘formaction=""method="post"
服務(wù)器地址:inputtype="text"name="host"value="localhost"/br/
數(shù)據(jù)庫(kù)賬號(hào):inputtype="text"name="user"value=""/br/
數(shù)據(jù)庫(kù)密碼:inputtype="password"name="pwd"value=""/br/
指定數(shù)據(jù)庫(kù):inputtype="text"name="db"value="test"/br/
inputtype="submit"value="確定"/
/form‘;
}
?
3、第三種就是用()標(biāo)記符了,這是在PHP168的模板代碼中首次見到的。
?php
printEOT
divclass="slidecont"{$label[deepblue_mainslide]}/div
divclass="newcontainter"
divclass="head"{$label[deepblue_mainh1]}/div
divclass="cont"id="Tab1"{$label[deepblue_maint1]}/div
divclass="cont"id="Tab2"{$label[deepblue_maint2]}/div
/div
ahref="$rs[url]"title="$rs[descrip]"target="_blank"$rs[name]/a
EOT;
?
在html中調(diào)用php內(nèi)容,可以用script src="friendlinks.php"/script然后在friendlinks.php中調(diào)取數(shù)據(jù)庫(kù)數(shù)據(jù)。并輸出適當(dāng)?shù)膆tml,或者輸出xml、json都可以,只是圖簡(jiǎn)單的話,只要輸出html就行了。
在html中調(diào)用php內(nèi)容,可以用script src="friendlinks.php"/script然后在friendlinks.php中調(diào)取數(shù)據(jù)庫(kù)數(shù)據(jù)。并輸出適當(dāng)?shù)膆tml,或者輸出xml、json都可以,只是圖簡(jiǎn)單的話,只要輸出html就行了。