
Pro_4
User
Jul 30, 2001, 7:00 PM
Post #4 of 7
(777 views)
|
Well for the scriptname.cgi?action=set you have to change the $action part.
($useless, $action) = split(/\=/,$ENV{'QUERY_STRING'}); Just replace $action = $ENV{'QUERY_STRING'} with the above and then try the scriptname.cgi?action=set thing. Otherwise i dont see anything wrong with your program. @letters = ('A'..'Z', 'a'..'z', '1'..'5', '_'); @i = ( '15', '43', '40'); print @letters [ @i, -1, 55];
|