#! /usr/bin/perl -w # this is an example script of how you would use coderefs to define # your CGI::Ajax functions, and the methods return multiple results to # the page # # NB The CGI::Ajax object must come AFTER the coderefs are declared. use strict; use CGI::Ajax; use CGI; my $q = new CGI; my $divide = sub { my $a = shift; my $b = shift; return ($a / $b,"this is 2nd return value"); }; my $Show_Form = sub { my $html = ""; $html .= < CGI::Ajax Multiple Return Value Example
Enter Number:
EOT return $html; }; my $pjx = CGI::Ajax->new('divide' => $divide); $pjx->JSDEBUG(1); $pjx->DEBUG(1); print $pjx->build_html($q,$Show_Form); # this outputs the html for the page