Help for this page

Select Code to Download


  1. or download this
    $actions = $CGI->param ('action');
    $to_do = new INVOICES();
    ...
    elsif ($actions eq 'stats' ) { $to_do->stats () }
    ... skip ...
    else { $to_do->defscreen()}
    
  2. or download this
    $actions = $CGI->param ('action');
    $to_do = new INVOICES();
    eval {$to_do->$actions} || defscreen();