Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
... order by column1 asc|desc , column2 asc|desc, column3 asc|desc
You can only sort one way or the other at any one timeThis works but I can't sorting same time by prodName ASC and DESC.
Add a radio button to your form to select directionWhen I click prodName first time I get sort ASC but If I click prodName again nothing happens (I can't sorting DESC).
echo 'pagename.php?';
if ($_get('dir') == "d") {
echo 'dir=a';
} else {
echo 'dir=d';
}