Thread: Sort Button
View Single Post
Old 01-01-2013, 10:39 PM   PM User | #2
weir-07
New Coder

 
Join Date: Sep 2007
Posts: 98
Thanks: 25
Thanked 4 Times in 4 Posts
weir-07 is an unknown quantity at this point
Before page content and before your DB query.
PHP Code:
if ($_GET['sortby']) {
$sql_string="ASC"; } else { $sql_string="DESC"; } 
In the SQL query of your script;
PHP Code:
$query="SELECT * FROM table_name"
Change to...
PHP Code:
$query="SELECT * FROM table_name SORT BY ".$sql_string
weir-07 is offline   Reply With Quote