Appreciate all the help.
Issue: I'm trying to put values in an array, and then sort the values in the array, and then loop through the array, and print the value until all values are listed in a drop down select box. The values I'm placing in the array are from a directory listing ( folder names ) definited by a variable that holds the current value.
Below is a basic outline of my code.
<?
$listings = array("joe", "jim", "bob", "dave", "ron");
sort($listings);
While ($listings<>"")
{
echo ($listings<br><br>);
}
?>
Problem: This simple displays nothing on the screen. In tests, it appears to sort properly, and hold the values fine in the array, I just can't get the values to display in the select box ( I've tried many different schemas ).
Does anyone have any ideas? I'd appreciate your comments, and suggestions.
Thank You!