array.
//
function Wizard() {
}
// Method: Display
//
// Actually perform a step basd on <$_REQUEST> parameters.
//
function Display() {
global $PHP_SELF, $_REQUEST;
$current = 1;
if (array_key_exists('wizard_current',$_REQUEST)) $current = $_REQUEST['wizard_current'];
$total = count($this->steps);
$this->can_prev = true;
$this->can_next = true;
if ($current >= $total) {
echo "Finished: {$this->titles[$total - 1]}
\n";
echo "Completed: ". $this->Completed(100) ."
\n";
echo "