Perl with Ajax issue

[email protected] (Matt Zand) Mon, 12 Aug 2019 14:45:57 -0400
Newsgroups perl.beginners.cgi
Message-ID <CAJHWHyV1WU5cJQofxijZahuUDjPN0OjYw2n5PmXx8mZ5N20dYg@mail.gmail.com>
--000000000000dbf410058fefef8e
Content-Type: text/plain; charset="UTF-8"

I am making Ajax call to Perl page and try to parse data in perl page and
return results to html page
on my perl page, I have

use strict;
use warnings;
//
use JSON;
use CGI;

my $cgi = CGI->new();
my $string = $cgi->param('sform');
my $json = encode_json( [$string] );
print $cgi->header( -type => 'application/json' );
print $json;
print $string;

I am tesitng this on localhost.

I am getting no response. Should I install Perl on the server or does it
come with Apache package.



-- 
Cheers,

Matt Zand
Cell: 202-420-9192
Work: 240-200-6131
High School Technology Services <https://myhsts.org/>
DC Web Makers <https://dcwebmakers.com/>
Coding Bootcamps <https://coding-bootcamps.com/>

--000000000000dbf410058fefef8e
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">I am making Ajax call to Perl page and try to parse data i=
n perl page and return results to html page<div>on my perl page, I have<br>=
<div><br></div><div>use strict;<br>use warnings;<br>//<br>use JSON;<br>use =
CGI;<br><br>my $cgi =3D CGI-&gt;new();<br>my $string =3D $cgi-&gt;param(&#3=
9;sform&#39;);<br>my $json =3D encode_json( [$string] );<br>print $cgi-&gt;=
header( -type =3D&gt; &#39;application/json&#39; );<br>print $json;<br>prin=
t $string;<br><div><br></div><div>I am tesitng this on localhost.=C2=A0</di=
v><div><br></div><div>I am getting no response. Should I install Perl on th=
e server or does it come with Apache package.=C2=A0</div><div><br></div><di=
v><br clear=3D"all"><div><br></div>-- <br><div dir=3D"ltr" class=3D"gmail_s=
ignature" data-smartmail=3D"gmail_signature"><div dir=3D"ltr"><div><div dir=
=3D"ltr"><div><div dir=3D"ltr"><div><div dir=3D"ltr"><div><div dir=3D"ltr">=
<div><div>Cheers,<br><br>Matt Zand<br></div><div>Cell: 202-420-9192<br>Work=
: 240-200-6131</div><div><a href=3D"https://myhsts.org/" target=3D"_blank">=
High School Technology Services</a></div><div><a href=3D"https://dcwebmaker=
s.com/" target=3D"_blank">DC Web Makers</a></div><div><a href=3D"https://co=
ding-bootcamps.com/" target=3D"_blank">Coding Bootcamps</a><br></div><div><=
/div><br></div></div></div></div></div></div></div></div></div></div></div>=
</div></div></div></div>

--000000000000dbf410058fefef8e--