You'll need to view the output of the php to the page. (view-source on the browser).
You can then see what is causing the problem with IE.
As it looks, there should not be a problem.
What the code does is iterate through each image in the image directory of the template being used.
Then it writes out the options for the select element with:
[php]
printf('<option value="%1$s/%2$s">%2$s</option>',$img_dir_uri,$file);
[/php]
This is the same as:
[php]
echo '<option value="'.$img_dir_uri.$file.'">'.$file.'</option>';
[/php]
If you post the HTML source of the page, it will be easier to see the problem.
Last edited by digital-ether; Jan 13th, 2007 at 3:18 am.
Reputation Points: 457
Solved Threads: 101
Nearly a Posting Virtuoso
Offline 1,250 posts
since Sep 2005