PHP头条
热点:

php在线文本编辑器


作者:leon0324
function write_file($filename,$contents)
{ if ($fp=fopen($filename,"w"))
{
fwrite($fp,stripslashes($contents));
fclose($fp);
return 1 ;
}
else {return 0; }
};
if ($submitbutton=="完成")
{ $rs=write_file(DownloadFilesa2001-12-15$page,"$test");
echo "$page
";
}
elseif ($action=="page")
{ $content=DownloadFilesa2001-12-15$page;
$fp=fopen($content,"r") or die(Could not open file.);
$contents=fread($fp,filesize($content)) or die(Could not read from file.);
$contents=htmlspecialchars($contents);
fclose($fp);
echo "";


}
else
{ echo "";
}
?>

www.phpzy.comtrue/phprm/38145.htmlTechArticlephp在线文本编辑器 作者:leon0324 function write_file($filename,$contents) { if ($fp=fopen($filename,"w")) { fwrite($fp,stripslashes($contents)); fclose($fp); return 1 ; } else {return 0; } }; if ($submitbutton=="完成") { $rs=wri...

相关文章

    暂无相关文章

PHP之友评论

今天推荐