当前位置:Gxlcms > PHP教程 > php使用ajax技术

php使用ajax技术

时间:2021-07-01 10:21:17 帮助过:3人阅读

一:html文件(yans.html)









二:ajax文件(AJax.php)

function fn_getParam($sSource,$sReplace="")
{
$sValue="";
if (isset($_GET[$sSource])) {
$sValue = $_GET[$sSource];
} else if (isset($_POST[$sSource])) {
$sValue = $_POST[$sSource];
}
if (is_null($sValue) || $sValue=="") {
return $sReplace;
}
return $sValue;
}
$a = fn_getParam('name','yans');
// 打开文件,获得句柄
$handle = fopen('test.txt', 'w+');
// 写入文件
fwrite($handle,$a);

// 关闭文件
fclose($handle);

// 返回ajax操作结果。
echo $a;
?>

人气教程排行