| 
<?
include("digidisplayer.php");
 include("framemaker.php");
 
 $rand_number = rand(32441234,99875432);
 $counter = new DigiDisplayer($rand_number,"strip02.gif",10);
 $img = $counter->draw_digit();
 
 $border = new FrameMaker();
 $border->set_image($img);
 $border->set_border(12,"938348","sunken");
 $border->show_picture();
 
 ?>
 |