我正在创建一个博客系统,我只能使用静态文件。我有一节我正在创建一个新帖子,我把它写在这样的文本文件上:
new_post。 PHP
<form id=" form1" name="form1" method="post" action="writeblog.php">
<p>
<label>TITLE: </label><input type="text" name="title"/>
<label for="body"> Body: </label>
<textarea name="body" cols=50 rows=10></textarea>
<br />
<input type="submit" name="submit" value="POST"/>
</form>
writeblog.php
<?php
$out = fopen("blog.txt","a");
if(!$out){
header('Location: new_post.php');
exit;
}
$title=$_POST[title];
$body=$_POST[body];
$body=str_replace("\n"," ",$body);
fputs($out,"\n");
fputs($out,date("m/j/y h:i \n ",time()));
fputs($out,"$title\n\n\n");
fputs($out,"$body\n\n\n\n\n");
fclose($out);
header('Location: new_post.php');
exit;
?>
我需要一些帮助,如何处理文件中的一个帖子删除它或编辑它插入页面。