straight from www.php.net/sort
you don't need asort since you don't have an associative array
simply use sort()
<?php
$fruits = array ("lemon", "orange", "banana", "apple");
sort ($fruits);
reset ($fruits);
while (list ($key, $val) = each ($fruits)) {
echo "fruits[".$key."] = ".$val."\n";
}
?>
and jimson, his & n b s p ; will work fine if he wants a space to seperate the array elements