PHP Classes

File: showColorMatrix.php

Recommend this page to a friend!
  Classes of tobozo   HTML Color Matrix   showColorMatrix.php   Download  
File: showColorMatrix.php
Role: Example script
Content type: text/plain
Description: Code Sample to display 216 colors as html
Class: HTML Color Matrix
Determine the closest browser safe color value
Author: By
Last change:
Date: 19 years ago
Size: 275 bytes
 

Contents

Class file image Download
<?
 
/* $Id: showColorMatrix.php,v 1.0 2004/27/11 22:23:52 tobozo Exp $ */
?>
<html>
<head>
  <title>216 Colors</title>
</head>
<body>
<?

require_once('colorMatrixHTML.class');

$matrix = new colorMatrix;

$matrix->DisplayColorMatrix();

?>
</body>
</html>