PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Vladimir Guzmán   Palette   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example that creates a palette from Yellow to Blue, passing through Green in 15 steps
Class: Palette
Generate color gradient steps from a color list
Author: By
Last change:
Date: 17 years ago
Size: 125 bytes
 

Contents

Class file image Download
<?
include("palette.php");
$myPalette=new palette(array("FFFF00","00FF00","0000FF"),15);
echo
$myPalette->printTest();
?>