PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
$vala=1; $valb=8; $valc=4; $vald=15;
function orderthem($first,$second,$third,$fourth){
what could I do here? // If I'm on the right track...
return $ordered_list;
}
$ordered_list=orderthem($vala,$valb,$valc,$vald);
How could I order them from highest to lowest?
To display 15,8,4,1