Login   Register  
PHP Classes
elePHPant
Icontem

File: test.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Pascal Toussaint  >  Image Browser  >  test.php  >  Download  
File: test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Image Browser
Create a picture browser
Author: By
Last change:
Date: 2004-01-24 02:52
Size: 377 bytes
 

Contents

Class file image Download
<?php
  
include_once("class.imagebrowser.php");
?>
<html>
<head>
    <title>TEST: ImageBrowser</title>
<body style="overflow:auto;">
<?php

  $MyBrowser 
= new ImageBrowser("D:\\Serveur Web\\images");
  
//$MyBrowser->BackGroundColor = "#66CCFF";
  //$MyBrowser->ShowFilename = true;
  //$MyBrowser->ShowIndex = false;
  
$MyBrowser->ShowBrowser();
?>
</body>
</html>