Advertisement
Guest User

Untitled

a guest
Jul 12th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. switch ($_GET['order']) {
  2.  case 'DESC':
  3.   $orderby = 'DESC';
  4.   break;
  5.  case 'ASC':
  6.  default:
  7.   $orderby = 'ASC';
  8. }
  9.  
  10. $query = "SELECT * FROM tabelle WHERE 1=1 ORDER BY name $orderby LIMIT 25";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement