程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php在線文本編輯器

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 "";
}
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved