简体   繁体   English

单击弹出窗口中按钮的搜索结果

[英]Search result on click of button in popup

I want to display search result on click of button, but my code is giving me the search result without click on button. 我想在单击按钮时显示搜索结果,但是我的代码在没有单击按钮的情况下为我提供了搜索结果。

I think it's giving me the query result not the search result. 我认为这是给我查询结果而不是搜索结果。

This code is working fine when I display the result on the page, but as per my requirement I want to display the search result on a popup. 当我在页面上显示结果时,此代码工作正常,但是根据我的要求,我想在弹出窗口中显示搜索结果。

I have used jquery popup. 我已经使用了jQuery弹出窗口。

<body><form action="#" method="POST"><body><form action="#" method="POST"><div data-role="page">

<div data-role="main" class="ui-content" >

<a href="#a" data-rel="popup" class="ui-btn" onclick="result()" data-transition="slidefade">Smart Search</a>

</div>

 <div data-role="popup" id="a" class="col-sm-6 ui-content">
 <div class="input-group col-sm-8">      
                                  <input type="text" name="query" class="form-control" placeholder="Search Products to Buy..."  "  />

                                                  <span class="input-group-btn">
                                                                            <button name ="search_btn" id ="search class="btn btn-warning" type="submit" value="Search" style="background-color:orange;">Search</button>
                                                  </span>

    </div><div class="input-group col-sm-8 " ><table class="table table-hover">
                   <thead >
                         <tr bgcolor="#1E90FF">
                                <th>Products</th>
                                <th>Details</th>
                                <th>Retailers</th>
                                <th>Price</th>
                                <th>Buy</th>
                       </tr>
                    </thead>
                </div><?php
 error_reporting(0);
 mysql_connect("localhost", "root", "") or die("Error connecting to database: ".mysql_error());
 mysql_select_db("wordpress") or die(mysql_error());
     ?><?php $query = $_POST['query'];  $query = htmlspecialchars($query); 
$query = mysql_real_escape_string($query);
$raw_results=mysql_query("select feed_product_image,feed_product_name,price,deeplink,image from wp_pc_products_merchants e,wp_pc_products w where e.slug=w.id_merchant and feed_product_name LIKE '%".$query."%'") or die(mysql_error());
     if(mysql_num_rows($raw_results) > 0)
    {
    while($results = mysql_fetch_array($raw_results))
        { ?><div class="input-group col-sm-8" style="text-align:center;margin-top:10px;"><tbody>

                      <tr>
                         <td><img src = "<?php  echo $results['feed_product_image'];  ?>"  style="object-fit:contain;height:70px;width:100px;" /></td>
                         <td><?php  echo "<p>".$results['feed_product_name']. "</p>" ; ?></td>
                         <td><img src = "<?php  echo $results['image'];  ?>"  style="background-size:contain;height:40px;width:120px;"  /></td>
                         <td><?php echo '<i class="fa fa-inr">&nbsp;'.$results['price']. '</i>'.".00" ;   ?></td>
                         <td><a href="<?php  echo $results['deeplink'];  ?>" style="background-color:#ff8c21;" class="btn btn-warning btn-md">Buy now</a></td>
                     </tr>
    </tbody>
        </div>  


           <?php 

      }      
    }
    else
    { // if there is no matching rows do following
        echo "No results";
    }




?>

    </div>
    </form>
    </div>

This will give you search results in modal popup. 这将为您提供模式弹出窗口中的搜索结果。 I have changed your code around a bit. 我已经稍微更改了您的代码。 You can popup in case of no search results too. 如果没有搜索结果,也可以弹出。

    <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
    <script src="//code.jquery.com/jquery-1.10.2.js"></script>
    <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

</head>
<body>
      <div data-role="page">

<div data-role="main" class="ui-content" >

<a href="#a" data-rel="popup" class="ui-btn" onclick="result()" data-transition="slidefade">Smart Search</a>

</div>

 <div data-role="popup" id="a" class="col-sm-6 ui-content">
 <div class="input-group col-sm-8">   
     <form  method="POST">
        <input type="text" name="query" class="form-control" placeholder="Search Products to Buy..."  "  />

        <span class="input-group-btn">
                                  <button name ="search_btn" id ="search" class="btn btn-warning" type="submit" value="Search" style="background-color:orange;">Search</button>
        </span>
     </form>

    </div>

    <?php
        if(isset($_POST['query']) && $_POST['query']!="" ) {
        error_reporting(0);
        mysql_connect("localhost", "root", "") or die("Error connecting to database: ".mysql_error());
        mysql_select_db("wordpress") or die(mysql_error());
        $query = $_POST['query'];  $query = htmlspecialchars($query); 
        $query = mysql_real_escape_string($query);
        $raw_results=mysql_query("select feed_product_image,feed_product_name,price,deeplink,image from wp_pc_products_merchants e,wp_pc_products w where e.slug=w.id_merchant and feed_product_name LIKE '%".$query."%'") or die(mysql_error());


        if(mysql_num_rows($raw_results) > 0)
        {
    ?>
    <div class="input-group col-sm-8  modal-box"  id="popup" title="Search Results" style="text-align:center;margin-top:10px;">
      <table class="table table-hover">
         <thead >
               <tr bgcolor="#1E90FF">
                      <th>Products</th>
                      <th>Details</th>
                      <th>Retailers</th>
                      <th>Price</th>
                      <th>Buy</th>
             </tr>
          </thead>
          <tbody>
    <?php 
        while($results = mysql_fetch_array($raw_results))
        { ?>

                      <tr>
                         <td><img src = "<?php  echo $results['feed_product_image'];  ?>"  style="object-fit:contain;height:70px;width:100px;" /></td>
                         <td><?php  echo "<p>".$results['feed_product_name']. "</p>" ; ?></td>
                         <td><img src = "<?php  echo $results['image'];  ?>"  style="background-size:contain;height:40px;width:120px;"  /></td>
                         <td><?php echo '<i class="fa fa-inr">&nbsp;'.$results['price']. '</i>'.".00" ;   ?></td>
                         <td><a href="<?php  echo $results['deeplink'];  ?>" style="background-color:#ff8c21;" class="btn btn-warning btn-md">Buy now</a></td>
                     </tr>



           <?php 

      }   
      ?>
                     </tbody>
                </table>

        </div>  

      <?php 
        }
        else
        { // if there is no matching rows do following
            echo "No results";
        }

       }
    ?>

    </div>
    </form>
    </div>
        <script>
          $(function() {
            $( "#popup" ).dialog();
          });
          </script>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM