ok, im working through some of the warnings, and i have a question. is this not valid:
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime
+(time);
my $dateTime = $hour,":",$min,":",$sec," ",$mday,"/",$mon+1,"/",$y
+ear+1900,"";
when i run my program, i get this for output:
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of private variable in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of private variable in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of private variable in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of addition (+) in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of addition (+) in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
Useless use of a constant in void context at C:\Perl\test\Dev\AutoSI\autoSI.pl line 98.
anyhelp would be great.
thanks