0

我有一个以表格格式显示的默认列表。现在在表格上方,我有一个排序选项。现在,如果不提供该排序选项的表单和按钮,我将如何根据下拉选择框中选择的顺序选项更改记录。我正在尝试通过使用 jquery 来做到这一点。但最终,徒劳无功。我的代码是这样的:

<?php
$other_account_sql = "SELECT `admin_id`,`username`,`admin_name`,`role`,`status`,`email`,`contact_no`,`location`,`creation_date` FROM `admin_details` WHERE `username` <> '".$_SESSION['existingUser']."'"; //this is for getting default lists 
?>

<!-- html code-->
<select name="sort_selection" id="sort_selection" class="soring_select">
    <option value="">--Select One--</option>
    <option value="admin_name" >Name</option>
    <option value="email" >Email Id</option>
    <option value="location">Location</option>
    <option value="contact_no">Contact No</option>
</select> 
<!--end of html code-->

<!-- js code-->
<script type="application/javascript" src="js/jquery-1.7.2.js" language="javascript"></script>
<script type="application/javascript">
   $(document).ready(function(){
     $('#sort_selection').change(function(){
    var str = "";
     $("select option:selected").each(function () {
        str += $(this).text() + " ";
     });
    }); 
    });
</script>
<!-- end of js code-->

现在我的问题是如何根据选择更改查询?请帮我。

4

1 回答 1

1

给你,伙计

<?php
$other_account_sql = "SELECT `admin_id`,`username`,`admin_name`,`role`,`status`,`email`,`contact_no`,`location`,`creation_date` FROM `admin_details` WHERE `username` <> '".$_SESSION['existingUser']."'" ORDER BY ". $_POST['sort_selection'].: ASC;
?>

祝你好运

于 2012-04-14T13:08:56.773 回答