<?php /** * this file make a random text file of 5 characters * and show it **/ require_once 'class_pictText.php'; $pict = new pictText(); $pict->makeRandomText(5); //$pict->setFont(); $pict->show(); unset($pict); ?>
info at phpclasses dot org