save_text.php
上传用户:feiyaoda
上传日期:2016-11-21
资源大小:9556k
文件大小:0k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php
  2. include_once ('config.php');
  3. $path = $_POST['path'];
  4. $file = $_POST['file'];
  5. $content = $_POST['content'];
  6. // this is a fix for returns that doubles each time saved is pressed
  7. $content = str_replace("r",'',$content);
  8. $fp = @fopen("$path/$file", "w");
  9. if ($fp)
  10. {
  11.     fputs($fp,stripslashes($content));
  12.     fclose($fp);
  13.     $show_Message = 1;
  14. }
  15. else $show_Message = 2;
  16. include("./edit_text.php");