我有一张表格,工作人员可以填写这些表格,将他们的信息发送到我们的更新页面。我的代码是
mod_pagespeed
我疯了,因为我希望文本位于文件顶部而不是底部,任何人?
答案 0 :(得分:0)
$filename = "files/armaupdates";
$text = $_POST['update'];
$updatesep = "<hr><br><hr><br>";
$content = file_get_contents($filename);
$fp = fopen($filename, "w");
if($fp){
fwrite($fp, ($text . $updatesep . $content));
fclose($fp);
echo "Updates has been written!";
}
else {
echo "Error!";
}
答案 1 :(得分:0)
只需在内容中添加新数据:
Height
给你代码:
$updatedContents = $text . $updatesep . file_get_contents($filename);