The following warnings occurred:
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message
Warning [2] Undefined array key "allowautourl" - Line: 584 - File: inc/class_parser.php PHP 8.1.31 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/class_parser.php 584 errorHandler->error_callback
/inc/class_parser.php 228 postParser->parse_mycode
/printthread.php 203 postParser->parse_message



GetSimple Support Forum
Quick Question - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Developer Discussions (http://get-simple.info/forums/forumdisplay.php?fid=8)
+--- Thread: Quick Question (/showthread.php?tid=720)



Quick Question - JWH_Matthew - 2010-05-18

Does any one know a simple php script that will generate an image gallery of
all images in a folder?

I need to make a simple image gallery that just display all the images in that
folder.

I need the images to be generated with the follwing styleing

<div id=


Quick Question - rogerstreets - 2010-05-18

hi there this is script gets the content in a folder and if you echo output it displays the images inside a div

Code:
// open the directory
  $dir = opendir( $pathToImages );

  $counter = 0;
  // loop through the directory
  while (false !== ($fname = readdir($dir)))
  {
    // strip the . and .. entries out
    if ($fname != '.' && $fname != '..')
    {
      $output .= "<div id=\"id\">";
      $output .= "<img src=\"{$pathToImages}{$fname}\" border=\"0\" />";
      $output .= "</div>";

    }
  }



Quick Question - sertorre - 2010-06-19

j just write a plugin that make exatly this.....
if u write me f.mariottini@gmail.com i'll send it...
but it lack of documentation and had a bat eng lang...^____^