Jump to content

kat2481

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kat2481's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. How do I sort this so it displays the results alpha? if ($handle = opendir("/home/mysite/public_html/Store/{$thestore}/Images/")) { //echo "Directory handle: $handle\n"; //echo "Files:\n"; while (false !== ($file = readdir($handle))) { if (strlen($file) >3){ echo "<OPTION Value = '"; echo "Store/{$thestore}/Images/{$file}"; echo "'>"; echo "$file"; echo "</OPTION>"; } } closedir($handle); } if ($handle = opendir("/home/mysite/public_html/Images/Backgrounds/")) { //echo "Directory handle: $handle\n"; //echo "Files:\n"; while (false !== ($file = readdir($handle))) { if (strlen($file) >3){ echo "<OPTION Value = '"; echo "Images/Backgrounds/{$file}"; echo "'>"; echo "$file"; echo "</OPTION>"; } } closedir($handle); } ?> -------- Thanks for any replies
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.