Mercurial > boosterpack
comparison scripts/pjx_JSON_out.pl @ 0:477258d09353 boosterpack
[svn r1] initial import
author | robert |
---|---|
date | Sun, 30 Aug 2009 02:19:26 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:477258d09353 |
---|---|
1 #!C:/strawberry/perl/bin/perl.exe | |
2 use strict; | |
3 use CGI; | |
4 use JSON; | |
5 use Data::Dumper; | |
6 | |
7 my $q = new CGI; | |
8 | |
9 | |
10 print $q->header(); | |
11 | |
12 | |
13 my $val = $q->param('args'); | |
14 my @vals = split(//, $val); | |
15 | |
16 | |
17 my $hash; | |
18 map { $hash->{$_} = chr(ord($_)+1) } @vals; | |
19 | |
20 my $json = objToJson($hash); | |
21 | |
22 print "var jsonObj = $json"; |