for a detailed description, copyright and license information. */ /* Section: Files - - - */ /* @package xajax @version $Id: multiply.server.php 362 2007-05-29 15:32:24Z calltoconstruct $ @copyright Copyright (c) 2005-2006 by Jared White & J. Max Wilson @license http://www.xajaxproject.org/bsd_license.txt BSD License */ function multiply($x, $y) { $objResponse = new xajaxResponse(); $objResponse->assign("z", "value", $x*$y); return $objResponse; } require("multiply.common.php"); $xajax->processRequest(); ?>