How do I receive and respond to Ajax requests in Perl?
Posted
by Peterim
on Stack Overflow
See other posts from Stack Overflow
or by Peterim
Published on 2010-04-06T19:40:09Z
Indexed on
2010/04/07
18:03 UTC
Read the original article
Hit count: 321
I have a client-side appliction which submits some data via AJAX POST request (request.open("POST", url, flag)
) to my Perl CGI script.
How do I retrieve this data with Perl and return some other data (AJAX response)?
© Stack Overflow or respective owner