PHP Classes

File: imgpopup.php

Recommend this page to a friend!
  Classes of Germán Sosa   Image Pop Up Class   imgpopup.php   Download  
File: imgpopup.php
Role: Application script
Content type: text/plain
Description: File for output the Pop Up Window Content
Class: Image Pop Up Class
Create thumbnails and link pictures in new windows
Author: By
Last change:
Date: 22 years ago
Size: 410 bytes
 

Contents

Class file image Download
<html>

<?
   
/*
     * This is the pop up window page of the Image Pop Up Class.
     */
   
require ('imgpopup.class.php');

?>

<head>
<title>Image Pop Up Window</title>
<meta name="generator" content="Image Pop Up Class">
</head>

<body bgcolor="#ffffff" leftmargin="0" topmargin="0">

<?
   
if (isset ($file)){
       
$img = new ImgPopUp ($file);
        echo
$img->ImgTag ();
    }
?>

</body>

</html>