[PHP-WIN] Re: access remote files
UNC paths were broken, but they work in the current CVS build. I don't know if the fix was in 4.0.6 or not. -- Jeremy Bettis [EMAIL PROTECTED] "Nicolas Toniazzi" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does someone kn
[PHP-WIN] Re: drop down menu
Here is an example using Pear::DB syntax: getAll("select keyfield, descfield from table", DB_FETCHMODE_ASSOC); echo "\n"; foreach ($data as $row) { echo "", $row["descfield"], "\n"; } echo "\n"; ?> -- Jere