Código PHP:
<?php
require("sajax/php/Sajax.php");
function saludar($nombre){
return "Hola $nombre";
}
sajax_init();
sajax_export("saludar");
sajax_handle_client_request();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> sajax </title>
<script language="javascript">
<?php sajax_show_javascript(); ?>
window.onload = function(){ setInterval(function)(){generarSaludo()},10000)};
function contenedor(resultado){
alert(resultado);
}
function generarSaludo(){
var nombre = document.getElementById("nombre").value;
x_saludar(nombre,contenedor);
}
</script>
</head>
<body>
ingrese su nombre: <input type="text" name="nombre" id="nombre" value="" size="35">
<br /> y presione saludar: <input type="button" value="saludar" onclick="generarSaludo(); return false;">
</body>
</html>