- or download this
use Class::CGI
handlers => {
...
my $date = $cgi->param('invoice_date');
my $date = $cgi->param('sales_date');
my $day = $date->day;
- or download this
use Class::CGI
handlers => {
...
my $date = $cgi->param('invoice_date');
my $date = $cgi->param('sales_date');
my $day = $date->day;
- or download this
package My::Date::Handler;
...
);
}
1;
- or download this
use Class::CGI
handlers => {
...
my $sales_date = $cgi->param('sales_date');
my $customer = $cgi->param('customer_id');
my $referrer = $cgi->param('referrar_id');