Hi,
> Note: questions of this nature you might want to send to
> [EMAIL PROTECTED] as that is a list specifically about cgi, though
> in most cases the beginners list will be able to help you too.
Thanks I will check it out >(more below)>
> Vargas Media wrote:
> > Hi,
Hi,
I have been studying with the O'Reilly book "CGI Programming with Perl" -
Chapter 5 page 99
Below is an example of a upload.cgi that utilizes CGI.pm
I am not able to get it to work correctly yet and I am trying to find out if
it is the directory I am trying to load the file to or a progammatic
open $dir: $!";
while ( readdir DIR ) {
$dir_size += -s "$dir/$_";
}
return $dir_size;
}
sub error {
my( $q, $reason ) = @_;
print $q->header( "text/html" ),
$q->start_html( "Error" ),
$q->h1( "Error" )
Hi All,
I am new to Perl and I have been grabbing code here and there to make a
search engine for a site. - Posted below.
What I have works but is incredibly slow and doesn't report back when a
match is not found.
I have been working with "CGI Programming with Perl" from O'Rielly but,
haven't had