in reply to Re: CGI::Vars weirdness
in thread CGI::Vars weirdness

That is exatly what I want to see. When I enter a '+', I want to see t +he '+' in the CGI::Vars:( Alas! I did however forget to mention something important. I am using an Aja +x callback to submit the form. Could that be causing the problem?? <input type="button" name="mysubmit" value="Submit" onClick="myFunc([' +mytool', 'foo', 'bar'], ['result'], 'POST'); "/> Thanks again!

Replies are listed 'Best First'.
Re^3: CGI::Vars weirdness
by Corion (Patriarch) on Apr 04, 2008 at 08:27 UTC

    Most likely, you will either need to properly encode your entities for the request (escape() function) or use a Ajax framework that properly encoded the entities for the request.

    As an aside, please put your "human" text into <p>...</p> tags and only your code into <code>...</code> tags. That way, it is far better readable for everybody.