kito2
www.masteria.net
Hey there, Im using modern AAC but the sort function isnt working :S
Actually it looks like this:
But when you submite the sort selection, it doesn't sort the players... Any one could give me a working example on how to sort them?
Actually it looks like this:
PHP:
echo "<b>Sort by </b> <select name='sort'>";
echo "<option value=''>None</option>";
echo "<option ".set_select('sort', 'level')." value='level'>Level</option>";
echo "<option ".set_select('sort', 'Vocation')." value='Vocation'>Profession</option>";
echo "<option ".set_select('sort', 'name')." value='name'>Name</option>";
echo "</select>";
echo " <input type='submit' value='Order'>";
echo "</form>";
echo "</form>";
if(count($players) > 0) {
echo "<table width='100%'>";
echo
But when you submite the sort selection, it doesn't sort the players... Any one could give me a working example on how to sort them?