On Nov 25, sulfericacid said:

>#!/usr/local/bin/perl -w
>
>my %form;
>my $content;
>
>my $userurl = $form{'userurl'};

Where do you think %form gets populated?  You want to use the CGI.pm
module:

  use CGI 'param';
  my $userurl = param('userurl');

>print "Content-type: text/html\n\n";
>
>use diagnostics;
>use strict;

You usually put 'use ...' statements at the top of a program -- it's
easier to tell exactly what is required.

-- 
Jeff "japhy" Pinyan      [EMAIL PROTECTED]      http://www.pobox.com/~japhy/
RPI Acacia brother #734   http://www.perlmonks.org/   http://www.cpan.org/
<stu> what does y/// stand for?  <tenderpuss> why, yansliterate of course.
[  I'm looking for programming work.  If you like my work, let me know.  ]


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to