Hi there Monks!
I have this AJAX call to a non- CGI Perl script where I am trying to pass values
to the Perl script.
If I pass like this:
...
$("#send").click(function(){
$.ajax({
type: 'POST',
url: 'process.pl?first=<TMPL_VAR NAME="FR">&last=<TMPL_VAR NA
+ME="LA">',
dataType: "json",
success: function(data) {
if(data){
alert("We pass!");
}
},
error: function() {
alert("We have a problem!");
}
});
});
...
And expecting in the Perl script like this: process.pl
#!/usr/bin/perl
use strict;
use warnings;
use CGI;
my $q = new CGI;
my $first = $q->param("first");
my $last = $q->param("last");
print "F=$first - L=$last\n";
exit;
I got nothing!
Passing like this from the AJAX:
...
url: 'process.pl?<TMPL_VAR NAME="FR"> <TMPL_VAR NAME="LA">',
...
And in the Perl script:
...
my ($first, $last ) = @ARGV;
print "F=$first - L=$last\n";
...
It will print from values in "$first", but "$last" is empty!
Any suggestions?
Thanks for looking!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.