Recent Posts

Caution: Greetings to all visitors. The site is working in short. Links Please skip the link to view any topic and thank you for visiting
header ads

Php mysql search engine showing all results instead of specific

hello friends,

I am trying to build a php mysql search engine following a tutorial
but somehow when i search for specific name its displaying all results
whats wrong here ?

here is my code

<?php

require "connect.inc.php";
global $conn;
  $search_name = $_POST["search_name"];
if(isset($search_name)){
  
       if(!empty($search_name)){
        
          $query = "SELECT name FROM names WHERE name LIKE '%" .mysqli_real_escape_string($search_name). "%'";
          $query_run =...
PHP:
Php mysql search engine showing all results instead of specific

from PHP https://ift.tt/2pFdNmo
via IFTTT

Post a Comment

0 Comments