代码:
echo '<form method="POST" action="test.php" id="textarea">
<textarea rows="40" cols="200" name="textarea" form="textarea">Text</textarea><br>
<input type="submit">
</form>';
$string = $_POST["textarea"];
exit();
当我有一个包含单词“substring”的字符串示例时:JustSomeText&amp; substring.SomeMoreText 我有以下错误:
Not Acceptable
An appropriate representation of the requested resource /test.php could not be found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
我对这个错误毫无头绪。我知道问题是使用单词substring和POST方法,但试图谷歌它没有任何成功。
编辑: test.php是包含代码的文件。 我缩小了导致上述错误的代码。即使是带有各种字符的巨大字符串,所有工作都很好,但是当字符串出现在字符串中时,我就会出现错误。
答案 0 :(得分:0)
这是系统管理员的一个问题。我和他们谈过了,现在已经解决了。我已经要求了解更多细节。如果系统管理员给我更多信息,我会在这里发布。