I've got a problem with a form in the administration area of my website. I use it for changing the displayed HTML text, it is written in PHP and connects to a MySQL database.
echo "<form action="index.php?kat=infos&aktion=upd&kategorie=$kategorie" method="POST" enctype="application/x-www-form-urlencoded">
";
echo "<table border="0">
";
echo "<b>$kategorie</b>
";
echo "<tr><td><b>Information:</b></td><td><textarea name="info" cols="50" rows="7">$info</textarea></td></tr>
";
echo "<tr><td><input type="submit" value="Editieren" /></td></tr>
";
echo "</table>
";
echo "</form>
";
If i enter some small sentences like "This is a test text only." and click the submit-button, the index.php accepts the data and inserts it into the database just as it should. But if I enter a longer text like the disclaimer from http://www.juraforum.de/disclaimer_muster/ I get a Error 403 on form submit.
I do not think it is because of the longer text, because if I write some longer random text in there it works, too.
I hope you can help me with this one.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…