I'm new to cgi/perl, so this is a a rather simplistic question.
I am going to be writting data to an html file using CGI.
After declaring my varibles the code would be:
open(DAT,">$sitedata") || die("Cannot Open File");
print DAT "$sitename\|$siteurl\|$description\n";
close(DAT);
Is there a...