Hi
Use sort() like this:
sort($arrayname);
while (list($indexval, $arrayname) = each ($arrayname)) {
print ("<br>$indexval - $arrayname");
}
I was just reading about this and have not tried it. I think you could just use a for loop to print the array items.
Good luck
Nick