我正在尝试对网页表上 mysql 表的结果进行排序。我在所需列上创建了按钮(升序和降序)。它适用于初始数据组。但是当我更改为其他数据组(比如不同的月份)时,它会重定向到初始结果页面而不是更改后的月份。我使用 PHP 创建了这个。表头之一是:
print " <th>";
print " Clientprint";
print " <form action=\"#\" method=\"POST\"><button type=\"submit\" name=\"client_val\" value=\"ASC\" style=\"border:0; background:transparent\" /><img src=\"up-icon.png\" width=\"16\" height=\"16\"></button>";
print " <button type=\"submit\" name=\"client_val\" value=\"DESC\" style=\"border:0; background:transparent\" /><img src=\"down-icon.png\" width=\"16\" height=\"16\"></button></form>";
print " </th>\n";