This is my flash script to send the variables “username” and “password” (by accepting input from the user) to the PERL script
on (release) {
getURL(“https://saucer.cc.umr.edu/cgi-bin/cgiwrap/csv9qd/firstperl.pl”, “_blank”, “POST”);
}
This is my PERL script
#!/umr/bin/perl5
use lib “/afs/umr.edu/software/umrperl/libs”;
use UMR::HTMLUtil;
use UMR::Oracle;
print "Content-type:text/html
“;
print “show me the monkey”;
$usernames = username;
$passwords = password;
print”<br>";
print"$usernames";
print"<br>";
print"$passwords";
It doesn’t work.
I’m just accepting the user input using my flash movie and sending those input values to my PERL script for display.
Thanks