I am new to the perl language and have been tasked to write a script. This
script is supposed to read input from an port 80 and store it in a file.
Is this all I have to do to get the data from port 80 (html page)?
#!/usr/local/bin/perl
$num_bytes = $ENV{'CONTENT_LENGTH'}; // length of data
$bytes_read = read (STDIN, $form_data, $num_bytes); // data
Thanks in advance for any help!
Salome Harrison