in reply to Post back values using Perl and jQuery.

This smells of jquerymonks.org to me, but either your $q->param( 'transac' ) isn't set to 'checkin', or your onSuccess() javascript sub isn't doing anything with the data it receives.

Also, please use a here-doc so you don't have to have all those unsightly \$s all over the place, or even better, store all that html in a separate file.

# a here-doc approach my $html_code = <<'EOF'; <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE> <html> ... the rest ... EOF <html>

Replies are listed 'Best First'.
Re^2: Post back values using Perl and jQuery.
by Anonymous Monk on Jan 02, 2014 at 23:36 UTC
    I can do that on the code, but I still can understand why the results I want is getting passed but I still cant get the code to print them after the submit.