我遇到了按列标题排序数据表的问题。
我的网站上有一个构建查询机制,可以接收用户选择的一个或多个值。这些值变为PHP变量,然后传递给查询并将数据表打印到屏幕上。地址栏网址也会更新。
我希望能够按表的列标题进行排序。
我将向您展示绕过整个构建查询功能的PHP代码。我将从SORT部分和查询开始:
<?php
if ($_GET['sort'] == "") {
$sort_by = "BOL_NUMBER";
} else {
$sort_by = $_GET['sort'];
}
$select = "";
if ($_SESSION['where'] != "") {
$select = "SELECT * FROM `mainTable` WHERE (". $_SESSION['where'] . ") ORDER BY " . $sort_by . "";
}
// $_SESSION['where'] comes from the build query and can contain 1 or more values
$QueryResult = mysql_query($select) or die ();
$resnum = mysql_num_rows($QueryResult);
下一部分是表格填充的位置:
if ($resnum == 0) {
echo "no results";
} else {
echo "<table>\n";
echo "<thead><tr>" .
"<th>BOL</th>" .
"<th>CONTAINER</th>" .
"<th>LOCATION</th>" .
"<th>STATUS</th>" .
"</tr></thead><tbody>\n";
while(($Row = mysql_fetch_assoc($QueryResult)) !== FALSE) {
echo "<tr>";
echo "<td>{$Row[BOL_NUMBER]}</td>";
echo "<td>{$Row[CONTAINER_NUMBER]}</td>";
echo "<td>{$Row[LOCATION_CITY]}</td>";
echo "<td>{$Row[STATUS_TYPE]}</td>";
echo "</tr>";
}
echo "</tbody></table>\n";
?>
还有更多列。我刚选了几个。
我在下一部分找到了这个页面:
Sorting html table with a href and php from sql database
所以我尝试将我在链接中读到的内容应用到标题中,如下所示:
"<th><a href='myPage.php?sort=BOL_NUMBER'>BOL</a></th>" .
"<th><a href='myPage.php?sort=CONTAINER_NUMBER'>CONTAINER</a></th>" .
"<th><a href='myPage.php?sort=LOCATION_CITY'>LOCATION</a></th>" .
"<th><a href='myPage.php?sort=STATUS_TYPE'>STATUS</a></th>" .
现在,我可以点击列标题,但是当我这样做时,它不会保留用户的选择,我可以告诉,因为URL更改如下例所示:
(这只是一个例子。它不包括上表中的参数) (只需记下此网址中的&amp;排序)
http://home.someCompany.com/myAPP/mypage.php?direction=I&type=&submit=Go&city=&pod=&terminal=&ramp=&container=&bol=&voyage=&conStatus=&con_location=&sort=&status=
将更改为此(如果我选择CONTAINER的标题):
http://home.someCompany.com/myAPP/mypage.php?&sort=CONTAINER_NUMBER
发生这种情况时,数据表不再出现在屏幕上。就像它从查询中删除所有内容一样,只需添加排序。但现在没有什么可以排序的。
答案 0 :(得分:0)
$_SERVER['QUERY_STRING']
超全局变量可让您访问GET
个参数。通过使用它,您可以保留请求的当前参数。
所以改变你的链接:
$urlQuery = str_replace(array('&sort=BOL_NUMBER', '&sort=CONTAINER_NUMBER', '&sort=LOCATION_CITY', '&sort=STATUS_TYPE'), '', $_SERVER['QUERY_STRING']); // To clean previous sorting, maybe replace by a regex
"<th><a href='myPage.php?' . $urlQuery . '&sort=BOL_NUMBER'>BOL</a></th>" .
"<th><a href='myPage.php?' . $urlQuery . '&sort=CONTAINER_NUMBER'>CONTAINER</a></th>" .
"<th><a href='myPage.php?' . $urlQuery . '&sort=LOCATION_CITY'>LOCATION</a></th>" .
"<th><a href='myPage.php?' . $urlQuery . '&sort=STATUS_TYPE'>STATUS</a></th>" .
你应该达到目标。