สอนเขียนโปรแกรมรับค่าจาก TextBox ผ่านฟอร์ม HTML ด้วย Method GET ของภาษา PHP โดยการส่งข้อมูลแบบ GET จะส่งข้อมูลแนบไปกับลิงก์ URL สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง PHP รับค่าจาก TextBox HTML ด้วย GET
<form action="<?=$_SERVER['PHP_SELF'];?>" method="GET">
<input type="text" name="txt">
<input type="submit" value="ตกลง">
</form>
<?php
isset( $_GET['txt'] ) ? $txt = $_GET['txt'] : $txt = "";
if( !empty( $txt ) ) echo "ตัวแปร txt = ".$txt;
?>
ผลลัพธ์
ตัวแปร txt = PHP GET