ตัวอย่างแฟ้ม a.php ที่สร้างขึ้นด้วย notepad <html> <head><title>hello</title></head> <body> <? echo "hello, kim heesun"; ?> </body> </html> หรือ แฟ้ม b.php <? echo "<html><body>"; echo "hello, kim heesun"; echo "</body></html>"; ?> หรือ แฟ้ม c.php <body> <form action=x.php method=get> <input name=web size=40><br> <input type=submit> </form> <? echo "<a href=" . $_GET['web'] . ">" . $_GET['web'] . "</a>"; ?> </body> หรือ แฟ้ม d.php :: อ่านข้อมูลจาก mysql มาแสดงผล <? $host = "localhost"; $db = "test"; $tb = "cust"; $user = "root"; $password = "yourpassword"; $query = "select * from $tb"; ########################### $connect = mysql_connect("$host","$user","$password"); $result = mysql_db_query($db,$query); if ($result) echo "OK<br>"; else exit; while ($object = mysql_fetch_object($result)) { foreach ($object as $o) echo $o; echo "<br>"; } mysql_close($connect); ?>