Hi, I want to write into file by calling another perl/cgi script. sample1.cgi #!/usr/bin/perl print "Content-type: text/html\n\n"; use CGI; use Switch; print qq' <html> <body> <form method="post" action="sample2.pl"> Field Name : <input type="text" size="6" name="prod"> <input type="submit" value="Save"> <input type="reset" value="Clear" ></form> </body> </html> '; from sample1.cgi I m trying to call sample2.pl