oh I see... well then do this instead of
CGI::Dump():
my $cgi = CGI->new;
use Data::Dumper;
printf "<xmp> %s </xmp>", Dumper($cgi);
| [reply] [d/l] [select] |
| [reply] |
sorry about the ignorance, but what does that code you gave do, and can you explain or tell me where can I find some explaination about what is this thing (object).
Hotshot
| [reply] |
| [reply] [d/l] |
| [reply] [d/l] [select] |
I don't know what you mean by objects sent to your CGI.... do you mean "form elements"? Can you give an example?
have you looked at the CGI documents? You might also want to look at the
CGI.pm author's website for more info | [reply] |
something to clarify, I had avariable, $state for the example, that returned the state of the current page the user is in. when I used print CGI::Dump() to dump the list of vars I get from web I could see:
* state
- createUser # for example
Now, the web designer here changed the page to return objects and when I try CGI::Dump() again I now get:
* state
- [object]
and that's new to me, so I ask for a little help here, is there something wrong with the javascript code (that the web designer wrote) that the CGI can't handle, or is there something I'm missing here?
Hotshot | [reply] [d/l] [select] |