SHORT BY <SELECT NAME="typeorder" onchange="type=this.value;window.location='หน้าเดิม.php?typeorder='+type;">
<OPTION VALUE="desc" SELECTED>DESC
<OPTION VALUE="asc">ASC
</SELECT><?
$type=$_GET[typeorder];
if ($type==""){
$type="asc";
}
$sql="select * from [table] order by id".$type;
?>