<?php
/*
 * we dont really need ajax.
 */

header('Content-type: text/html; charset=iso-8859-1');
$cc = 1; // ??

//print_r($_REQUEST);

//print "((" . print_r($_REQUEST,true) . "))";

/** PEAR : load missing functions */
/*
    if (!function_exists('file_put_contents')) {
        require_once 'PHP/Compat.php';
        PHP_Compat::loadFunction('file_put_contents');
	
    }
    
    list($junk, $id) = explode('_', @$_REQUEST['id']);
    $_REQUEST['id'] = $id;
    unset($_REQUEST['_']);
    file_put_contents('data/object.ser', serialize($_REQUEST));
    
    */
    
die(stripslashes(urldecode(@$_REQUEST['param']))); // use to be the key $_REQUEST[''value']
?>