please help!

SalomeH@tend.net ("SalomeH@tend.net")
Thu, 17 Jun 1999 12:35:46 -0400


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