PHP Classes

File: testMMF.php

Recommend this page to a friend!
  Classes of zinsou A.A.E.Moïse   PHP Favicon Maker   testMMF.php   Download  
File: testMMF.php
Role: Example script
Content type: text/plain
Description: example script
Class: PHP Favicon Maker
Generate a favicon icon file from an image file
Author: By
Last change:
Date: 6 years ago
Size: 353 bytes
 

Contents

Class file image Download
<?php
 
require_once('MakeMyFavicon.class.php');
 
?>
<!doctype html>
<html>
<head>
<?php
$x
=new loadMyfav('moki.gif',false,48,true);
echo
$x->getHtml();
?>
</head>
<body>
<?php
 
echo'<pre>';
echo
$x->getHtml(true);
 echo
'</pre>';
echo
'<br>';

$x=new loadMyfav('moki.gif',true,48,true);
echo
$x->getHtml(true);


?>
</body>
</html>