#! /usr/bin/perl -w
use strict;
use CGI::Ajax;
use CGI;
my $q = new CGI;
my $concatter = sub {
my $str = "All Values Are
\n";
map { $str .= ' and ' . $_ } @_;
print STDERR $str;
return $str;
};
my $Show_Form = sub {
my $html = "";
$html = <
CGI::Ajax Multiple Return Value Example