Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Re: stupid question

Quote Reply
Re: stupid question In reply to
Thanks eliot,

Yip, I've got those codes in place. I'm calling the subroutine 'process_form' from INSIDE the 'sub main', which is where the link ID is getting called and placed into the $rec. All is working well, the $rec contains the link data ok, until I try to pass the $rec details to the process_form sub. This is how it stands at the moment but is still giving a hash error...

inside the sub main I call the sub process_form below...


&process_form ({%$rec}, $in, $dynamic);


which calles this sub routine...


sub process_form {
# --------------------------------------------------------
my ($in, $dynamic, $rec) = @_;

## Call a sub routine in httmtemplate file, and pass the rec informaion through to the template again.

&site_html_recommend ({ error => "Made it to the process_form sub", %in, %$rec }, $dynamic) and return;
}


and is giving the error...

Can't use an undefined value as a HASH reference at... (points to the sub process_form &site_html_recommend call above.)


Can you see anything glaringly obvious stuffed up with the code?

Subject Author Views Date
Thread stupid question ryel01 3331 Oct 10, 2000, 7:54 PM
Thread Re: stupid question
Stealth 3243 Oct 10, 2000, 8:19 PM
Thread Re: stupid question
ryel01 3241 Oct 10, 2000, 8:23 PM
Thread Re: stupid question
Stealth 3230 Oct 10, 2000, 8:26 PM
Post Re: stupid question
ryel01 3226 Oct 11, 2000, 12:46 AM