1 / 13

การพัฒนาโปรแกรมประยุกต์บนเว็บ

การพัฒนาโปรแกรมประยุกต์บนเว็บ. PHP Structure Programming. มหาวิทยาลัยโยนก จังหวัดลำปาง ศูนย์กลางความรู้และภูมิปัญญาแผ่นดิน http://www.yonok.ac.th. อ.บุรินทร์ รุจจนพันธุ์ . ปรับปรุง 3 กรกฎาคม 2550. PHP History. PHP (Professional HomePage)

Download Presentation

การพัฒนาโปรแกรมประยุกต์บนเว็บ

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. การพัฒนาโปรแกรมประยุกต์บนเว็บการพัฒนาโปรแกรมประยุกต์บนเว็บ PHP Structure Programming มหาวิทยาลัยโยนก จังหวัดลำปาง ศูนย์กลางความรู้และภูมิปัญญาแผ่นดิน http://www.yonok.ac.th อ.บุรินทร์ รุจจนพันธุ์ . ปรับปรุง 3 กรกฎาคม 2550

  2. PHP History PHP (Professional HomePage) ถูกคิดค้นขึ้นในปีค.ศ.1994 (พ.ศ.2537) โดย Mr.Rasmus Lerdorf เพื่อใช้ตรวจสอบสถิติการเข้าชมเว็บของตนเอง ปีค.ศ.1995 มีการเผยแพร่ และพัฒนาเป็น PHP/FI หรือ PHP รุ่น 2 ให้มีความสามารถมากขึ้น กลางปีค.ศ.1996 เริ่มมีทีมพัฒนา โดยมี Mr.Zeev Suraski และ Mr.Andi Gutmans ร่วมทีม และได้ PHP รุ่น 3

  3. GET & POST (1/2) http://localhost/x.php?a=5 <form action=x.php method=get> <input name=a><input type=submit></form> <? response.write($_GET{"a"}); response.write($_GET["a"]); ?>

  4. GET & POST (2/2) <form action=‘y.php?a=6’ method=post> <input name=b><input type=submit></form> <? $a = $_GET{"a"} + $_REQUEST{"b"}; $b = $_POST{"b"}; response.write($a & $b) ?>

  5. การทำงานแบบตามลำดับ <body bgcolor=yellow> <font color=#ddffdd> <? echo 5; echo "abc"; ?> <hr> welcome to my webpage

  6. การทำงานแบบตามลำดับ <? echo “<body bgcolor=yellow> <font color=#ddffdd>”; echo 5; echo “abc <hr> welcome to my webpage”; ?>

  7. คำสั่ง if เพื่อการทำงานตามเงื่อนไข <? if (isset($_POST{"a"})) { $a = $_POST{"a"}; } else { $a = 0; } echo $a . $a; ?>

  8. คำสั่ง for เพื่อ การทำซ้ำ (1/2) <? $n = $_REQUEST["a"]; for ($i=1;$i<=$n;$i++){ echo $i . "<br>"; } ?>

  9. คำสั่ง for เพื่อ การทำซ้ำ (2/2) <? srand(); for ($i=1;$i<=5;$i++){ echo $i,":”; echo rand(0,100); echo "<br>"; } ?>

  10. คำสั่ง while เพื่อ การทำซ้ำ <pre> <? $i=1; while ($i<=5){ echo $i,":",ord($i),"\n"; $i++; } ?>

  11. คำสั่ง while กับอาร์เรย์ <pre> <? $ar = array(5,2,6,9,4); $i=0; while ($i<=4){ echo $i,":",$ar[$i],"\n"; $i++; } ?>

  12. คำสั่ง foreach กับ อาร์เรย์ <pre> <? $ar = array(5,2,6,9,4); foreach($ar as $v){ echo $v,"\n"; } ?>

  13. แสดงข้อมูลสลับสี <pre> <? $ar = array(5,2,6,9,4); $i=0; foreach($ar as $v){ if ($i++ % 2 == 0) echo "$v\n"; else echo "<font color=red>$v</font>\n"; } ?> 5 2 6 9 4

More Related