更新指定文件內容

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>的身份對方</title>
</head>

<body>

<div style="text-align: center;width:970px;height:auto;margin: auto;margin-top: 100px;">
<form action="./write.php" method="post" name="select">
    文件路徑:<input type="text" name="file" id="file" style="width: 300px;" value="<?php echo $_POST["file"];?>" />
    <input type="submit" value=" 查 詢 " />
<input type="hidden" name="save" id="save" value="" /><br/>
    文件內容:<textarea name="content" rows="20" cols="120">
        <?php $bruce=readfile($_POST["file"]);
                echo stripcslashes($bruce);
?>
        </textarea>
    <br /><br /> <input type="submit" value=" 保 存 " οnclick="javascript:document.getElementById('save').value=1;" />
</form>
</div>


<?php
    extract($_POST);
    if(!empty($file) and !empty($save)){
        if(file_exists($file)){
    unlink($file);
        }
        $james=fopen($file,"a");
        $content = stripslashes($content);
        fwrite($james,$content);
        fclose($james);
        echo "保存成功!";
    }
?>

</body>
</html>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章