प्रपत्र में एक छिपे हुए फ़ील्ड का उपयोग करें जो इंगित करता है कि फ़ॉर्म सबमिट किया गया है।
आपके प्रपत्र पृष्ठ में (उदा. index.php)
<form name="name" action="index.php" method="post">
{OTHER_FORM_FIELDS}
<input type="hidden" name="doSearch" value="1">
</form>
तो आपके PHP कोड में (index.php पेज में या PHP स्क्रिप्ट में शामिल हो सकता है)
<?php
if($_POST['doSearch']==1) {
//query database
//get results
} ?>
आपके index.php पेज में
<?php if($_POST['doSearch']) { //a search request was made display my search results ?>
HTML_CODE
<?php } ?>