On Jan 22, 2008 8:51 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> print $query->redirect("mytest.cgi?ID=$value");
> and I am still not getting the $value to show up.
Does the program here work for you when you run it from the command
line? In what important way does your program differ from this one?
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $value = 'redirect_ID';
my $query = new CGI;
print $query->redirect("mytest.pl?ID=$value");
Hope this helps!
--Tom Phoenix
Stonehenge Perl Training
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/