fork download
  1. <?php
  2.  
  3. $directory="img";
  4. $dirint = dir($directory);
  5. while (($archivo = $dirint->read()) !== false)
  6. {
  7. if (eregi("gif", $archivo) || eregi("jpg", $archivo) || eregi("png", $archivo)){
  8. echo '<img src="'.$directory."/".$archivo.'">'."<br/>";
  9. }
  10. }
  11. $dirint->close();
  12. ?>
Runtime error #stdin #stdout #stderr 0.01s 52488KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  dir(img): failed to open dir: No such file or directory in /home/CrY68p/prog.php on line 4
PHP Fatal error:  Call to a member function read() on boolean in /home/CrY68p/prog.php on line 5