興味深い問題があります。と を取る以下のコードが$_POST['content']
あり$_POST['page']
ます。私が書き込もうとしている「コンテンツ」は「HTML」(以下を参照)ですが、実際に書かれているコンテンツは
<footer>
<div class="grid_16">
<div class="wrapper">
<span class="right"><!-- {%FOOTER_LINK} --></span>
つまり、コンテンツの大部分が欠落しています。
どんなガイダンスでも大歓迎です
<?php
if (!$_POST['content'] && !$_POST['page'])
return false;
$content = $_POST['content'];
$page = $_POST['page'];
$fp = fopen('content/'.$page, 'w');
fwrite($fp, htmlspecialchars($content));
fclose($fp);
?>
$_POST['content']
は:
<footer>
<div class="grid_16">
<div class="wrapper">
<span class="right"><!-- {%FOOTER_LINK} --></span> l
la-panacee © 2013 |
<a href="privacyStatement.php">Privacy policy</a>
</div>
</div>
</footer>