php文件操作

<?php
header("content-type:text/html;charset=utf-8");
?>
<form method="post">
<input type="text" name="user" />
<input type="text" name="pass" />
<input type="submit" name="Submit" value="提交" />
</form>
<?php
/*写入*/
if ($_POST[Submit]) {
$time=date("Y-m-d H:i:s");
$fp=fopen("db.txt","a"); 
fwrite($fp,$_POST[user]."|".$_POST[pass]."|".$time."\r\n"); //写入数据,中间用|隔开
fclose($fp);
}
/*读取,可以通过|拆分项*/
$lines=file("db.txt");
print_r("<pre>");
print_r($lines);
print_r("</pre>");
/*删除*/
/*你可以用一项来做标识,比如提交时间,来定位行数。*/
?>

    A+
发布日期:2014年07月15日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: