Victor wrote:
I use the last version of perl-CGI.
When I transmit the variables using the get method it
works($cgi->param() returns the correct value).
When I transmit the variables using the post method it I receive a
empty string(($cgi->param() is empty).
If I try to receive the variables usi
David Romero wrote:
Victor wrote:
I use the last version of perl-CGI.
When I transmit the variables using the get method it
works($cgi->param() returns the correct value).
When I transmit the variables using the post method it I receive a
empty string(($cgi->param() is empty).
If I
I can get those with limited user input of month, day and year
only?
#!/usr/local/bin/perl
use POSIX;
$sec = 1;
$min = 0;
$hour = 0;
$mday = 01;
$mon = 10;
$year = 107;
$wday = ?;
$yday = ?;
$timestamp = mktime($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,-1);
print ($timestamp);
--
Da