Re: perl-CGI module - post method

2005-02-08 Thread David Romero
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

Re: perl-CGI module - post method

2005-02-08 Thread David Romero
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

Re: Convert Date to Timestamp.

2006-11-01 Thread David Romero
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