chessdesk - controller.php - AJAX Search Code ~ Ajax Training, Learn Ajax Video Tutorials Online, Ajax Examples
Ajax Training, Learn Ajax Video Tutorials Online, Ajax Examples: chessdesk - controller.php - AJAX Search Code

chessdesk - controller.php - AJAX Search Code

<?php

require_once('../../lib/xmlajaxresponse.class.php');
require_once('../../lib/request.class.php');

$response = &new XMLAjaxResponse();
$request = &new HttpRequest();

$event = $request->getParameter('event');

if ($event && function_exists($event)) {
$event($request, $response);
}

function changeDesk(&$request, &$response) {

$range = range(0, 63);
shuffle($range);
$boxes = array_slice($range, 0, 8);

foreach($boxes as $box) {
$response->addData('box' . $box, 'Changed<br />' . ($box + 1), 'fadeout');
}

}

function reloadDesk(&$request, &$response) {

for($i = 0; $i < 64; $i++) {
$response->addData('box' . $i, ($i + 1));
}

}

$response->doResponse();

?>

Related Posts by Categories

0 comments:

Useful Links on Adobe Flex

Your Ad Here

Latest Books on Adobe Flex