Can anyone see a problem with this code?
-value => $pass
);
print $IN->header( -cookie => $cookie_pass );
my $cookie_user = $IN->cookie (-name => 'user',
-value => $id
);
print $IN->header( -cookie => $cookie_user );
For some reason, when calling them, only the 'user' one holds a value
I've tracked down $pass, and that seems to be getting right upto where the cookie is set....so what am I doing wrong?
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Code:
my $cookie_pass = $IN->cookie (-name => 'pass', -value => $pass
);
print $IN->header( -cookie => $cookie_pass );
my $cookie_user = $IN->cookie (-name => 'user',
-value => $id
);
print $IN->header( -cookie => $cookie_user );
For some reason, when calling them, only the 'user' one holds a value
Cheers
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

