in reply to post form URL encoded

... Here is the part of my sending ...

You have a semicolon where you should have a comma, among other things; Use POST() and your typos will be more obvious

Also, the code you posted in incomplete, you don't show what is $wr

Also Read this if you want to cut your development time in half! and read Basic debugging checklist and brian's Guide to Solving Any Perl Problem

Also http://search.cpan.org/perldoc/LWP::UserAgent#$ua-%3Epost%28_$url,_\%form_%29

Replies are listed 'Best First'.
Re^2: post form URL encoded
by AnomalousMonk (Archbishop) on Jun 26, 2013 at 15:58 UTC
    Use POST() and your typos will be more obvious

    Another way to make typos and many other kinds of mistakes more obvious is to use the warnings and strict pragmata (as recommended in many basic debugging checklists):

    >perl -le "use warnings; use strict; ;; print qq{stringized array ref: }; [ a => 1, b => 2, ]; " Useless use of anonymous list ([]) in void context at -e line 1. stringized array ref:

    Update: diagnostics can also be helpful for the Perl/programming tyro.

A reply falls below the community's threshold of quality. You may see it by logging in.