"Dustin Krysak" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> ok, I added brackets and made my code to:
>
> <?php
> if ($handle = opendir('../../../mov')) {
>     while (false !== ($file = readdir($handle))) {
>
>         if ($file != '.' && $file != '..') {
>
>             $fileName = str_replace('.mov', '', $file);
>             echo '<option value="../../../mov/' . $file . '">' .
> $fileName . '</option>';
>         }
>     }
>     closedir($handle);
> }
> ?>
>
> when viewing my page in a browser, it worked! Now what I am hoping to
> do is put this menu on a PHP page, and have a qt movie placeholder and
> when this menu is used - replace the placeholder with the selected qt
> movie... I am just not sure how to do this.

This should be easy. Please post your QT placeholder (HTML) code. Then we
can help.

Regards, Torsten

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to