hello, i'm writing a perl script to take in user info and and write it to a file. my current code:
#!/usr/local/bin/perl
print "Content-Type: Text/html\n\n";
$str=$ENV{QUERY_STRING};
($first, $second, $third) = split(/&/, $str);
($dummy, $newid) = split(/=/, $first);
($dummy, $newfName) =...