Wrong forum
(I've moved it for you)
It could be a couple of things:
1) Your form in the HTML is corrupt, and thus its not sending any useful values
2) There is another hack you've done thats stopped it working - when did it stop working, and what were your last "tweaks"?
You could try adding:
print "Content-Type: text/html \n\n";
print "<pre>" . Dumper(%in) . "</pre>";
if (keys %in != 0) {
&process_form;
}
..and then see what gets printed out (i.e if any values are actually sent). I'm afraid I'm a bit rusty with Links2, as I tend to work only with the SQL products.
Cheers
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!

It could be a couple of things:
1) Your form in the HTML is corrupt, and thus its not sending any useful values
2) There is another hack you've done thats stopped it working - when did it stop working, and what were your last "tweaks"?
You could try adding:
Code:
use Data::Dumper; print "Content-Type: text/html \n\n";
print "<pre>" . Dumper(%in) . "</pre>";
if (keys %in != 0) {
&process_form;
}
..and then see what gets printed out (i.e if any values are actually sent). I'm afraid I'm a bit rusty with Links2, as I tend to work only with the SQL products.
Cheers
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!