Exec-PHP issues with readdir() function…
-
I would like to use a simple PHP script to show all of the images in a directory
<?php $handle = opendir ('https://www.xxx.com/flash/portfolio/branding/images/'); while (false !== ($file = readdir($handle))) { echo '<img src="'.$file.'"/><br />'.$file.'<br />'; } ?>
This throws back a couple of errors:
Warning opendir(https://www.xxx.com/flash/portfolio/branding/images/)
[function.opendir]: failed to open dir: not implimented in…. “location of exec-php plugin”Any ideas how to get a simple script like this to work?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exec-PHP issues with readdir() function…’ is closed to new replies.