## Showing Rating in Php using star & blank rating $ProductId = 1; $product_rating_qu = mysql_query(“select avg(rating) as star_rate from ratings where ratedto='” . $ProductId …
Read Moresearch
search in php
## Here multiple word search is tried.. Its working.. $data = array(); $data[‘search_list’] = “”; $data[‘total_search’] = “”; $data[‘search_on’] = “”; $data[‘search_words’] = “”; $_searchfield …
Read Morehow to implement search in codeigniter
$_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 MoreHow 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