หลักการ SEARCH ที่ต้องมี
1. <form> ทำภายใน Form
2. ตัวแปร มีหลาย Type ที่ใช้ เช่น Text , SELECT,date ... etc เป็นต้น
Code (PHP)
ex: <input type = "text" name="ID" id="ID"> หรือ
<select name="idF_S" class="phet" id="idF_S">
<option selected="selected">1</option>
<option>2</option>
<option>3</option>
</select>
หรือ
<select name="idagree" class="phet" id="idagree">
<option value=""></option>
<?php
$Agree="SELECT * FROM tblyes_no";
$Q_Agree=mysql_query($Agree) or die
("Query to get data from firsttable failed: ".mysqli_error());
while ($c=mysql_fetch_assoc($Q_Agree))
{
$cd=$c["ID"];
$nT=$c["Word"];
?>
<option value="<?php echo $cd; ?>"> <?php echo $nT; ?></option>
<?php } ?>
</select>
3. CODE MYSQL : SELECT * FROM Table WHERE ID = '".$_POST["ID"]."' หมายถึงตัวแปร ที่รับ
4. submit : <input type ="submit" name="OK">
if(isset($_POST["OK"])){