<?php

include 'securimage.php';

$numChars = isset($_REQUEST['numChars']) ? $_REQUEST['numChars'] : 4;

$img = new securimage();
$img->code_length = $numChars;
$img->show(); // alternate use:  $img->show('/path/to/background.jpg');

?>