PHP Classes

File: test.php

Recommend this page to a friend!
  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: 20 years ago
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>