Introduction to PHP HTML HTML PHP PHP php

  • Slides: 35
Download presentation
Introduction to PHP

Introduction to PHP

HTML語法

HTML語法

HTML語法

HTML語法

初探PHP • PHP開頭範圍標籤 <? php PHP語法 ? > <? PHP語法 ? > • 副檔名必為.

初探PHP • PHP開頭範圍標籤 <? php PHP語法 ? > <? PHP語法 ? > • 副檔名必為. php 將php語法寫在 php標籤裡, 如此 一來, php. exe就知 道要處理這段程式 <html> <head> <title>Example</title> </head> <body> <? php echo "Hi, I'm a PHP script!"; ? > </body> </html> 經過php. exe的 處理後, 會產生 給client的網頁 符合HTML語法 <html> <head> <title>Example</title> </head> <body> Hi, I'm a PHP script! </body> </html>

Text Area欄位 Text Area可讓使用 者輸入大量文字 定義Text Are的大小 假設在Text. Area輸入 Hello World, 則送給 server的資料為 Message=Hello+World

Text Area欄位 Text Area可讓使用 者輸入大量文字 定義Text Are的大小 假設在Text. Area輸入 Hello World, 則送給 server的資料為 Message=Hello+World

送出的資料為 http: //pads 8. cs. nthu. edu. tw: 8000/get. php? k ey=John&check=on&sex=boy&Message=Hell o+World&submit=submit

送出的資料為 http: //pads 8. cs. nthu. edu. tw: 8000/get. php? k ey=John&check=on&sex=boy&Message=Hell o+World&submit=submit

範例 使用PHP程式來處理資料 使用GET送出的資料 <? php http: //pads 8. cs. nthu. edu. tw: 8000/get. php?

範例 使用PHP程式來處理資料 使用GET送出的資料 <? php http: //pads 8. cs. nthu. edu. tw: 8000/get. php? k ey=John&check=on&sex=boy&Message=Hell o+World&submit=submit 和PHP的String變數有關的function ? > $name=$_GET['name']; $sex=$_GET['sex']; $check=$_GET['check']; echo $name; echo "性別是$sex "; if (strcmp("on", $check)==0){ echo "就讀本系"; } else{ echo "不是本系學生"; }

Reference • PHP 5網管實驗室 – http: //www. php 5. idv. tw/html. php? mod=article&act=i ndex&cid=3

Reference • PHP 5網管實驗室 – http: //www. php 5. idv. tw/html. php? mod=article&act=i ndex&cid=3 • CGI程式入門 – http: //ind. ntou. edu. tw/~dada/cgi/CGIprog. htm • “PHP入門教學”, Little Chen, 虎尾科技大學資 訊 程系 – http: //www. csie. nfu. edu. tw/php. BB 2/download. php? i d=1732&sid=2831850096 e 414 beadd 50967981 c 2536 • PHP程式設計講義 – http: //km. tceb. edu. tw/~wsx/php/index. htm