Gossamer Forum
Home : General : Perl Programming :

Different on RAQ 3's?

Quote Reply
Different on RAQ 3's?
Yeah, I know, RAQ 3's really do suck! However, this code s really annying me that I'm trying to get working on it!

I've narrowed it down to

Code:
$q='&'.substr($ENV{'QUERY_STRING'},0,256);
$q=~/\Wseed=(\w+)/; $b=$1;
$q=~/\Wcbpop=(\w+)/; $c=$1;

And the error is;

Quote:
Bad name after QUERY_STRING' at buy.cgi line 73.

Line 73 is the line I posted above. Does anyone know why I'm getitng this error? It works fine on any other system Frown

Thanks

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [A.J.] Different on RAQ 3's? In reply to
Why use that anyway? Heard of CGI.pm?

my $b = param('seed');
my $c = param('cbpop');

Last edited by:

Paul: Apr 8, 2002, 1:30 PM