$_searchfield = $_REQUEST[‘key’]; $_searchfield = str_replace(“‘”, “”, $_searchfield); $query = $this->db->query(“SELECT * FROM td_product WHERE active=1 AND product_code like ‘$_searchfield’ UNION SELECT * FROM td_product …
Read MoreTag: search in php
How to search data from table in php
———both HTML and php code in s1.php file—————- <form method=”post” action=”s1.php?go” id=”searchform”> <input type=”text” name=”name”> <input type=”submit” name=”submit” value=”Search”> </form> <?php if (isset($_POST[‘submit’])) { …
Read More