Skip to content

Instantly share code, notes, and snippets.

@muhfaris
Created December 20, 2017 03:39
Show Gist options
  • Save muhfaris/d606d81042fa9ac55c78890f33b5f111 to your computer and use it in GitHub Desktop.
Save muhfaris/d606d81042fa9ac55c78890f33b5f111 to your computer and use it in GitHub Desktop.
get link, order table
<?php
if(isset($_GET['sort'])) {
$query = $_GET;
if($_GET['sort']=='ASC') {
$query['sort'] = 'DESC';
} else {
$query['sort'] = 'ASC';
}
$query_result = http_build_query($query);
$links=$_SERVER['PHP_SELF'].'?'.$query_result;
}else{
$links=$_SERVER[REQUEST_URI].'&sort=ASC';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment