On Friday 07 June 2002 00:47, webmaster mbtradingco wrote:
> I know my doubt is probable odd, but I would ask your help please.
>
> I need a user to be able to select an image from a directory, from a
> drop down box. For this I need to list all the images available on the
> directory, hence, I have this code:
>
> <select size="1" name="normal1">
> <?php
> chdir("/home/casapu/paginas/images/carteleras");
> $direc = opendir(".");
> while ($f = readdir($direc)); {
> print("<option value=\"".$f."\">".$f."</option>");
> }
> ?>
> .</select>");
>
> but this is not working. I have reviewed the code against all the
> manuals/books I have, and it says it should work but it doesn't. Anyone
> knows what I'm doing wrong?
how doesn't it work?
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
/*
Fashions have done more harm than revolutions.
-- Victor Hugo
*/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php