Hello, I am writing a page that will post data, quite simple really. I have got some script that as you type, it iserts HTML behind the scenes, so if you press RETURN it iserts <p> </p> and starts a new paragraph. Heres the page:
Here is the page
THE PROBLEM IS, the page that this data is being posted to comes up with Error 406 (which i believe is means it cant display the page)
I had set this up yesterday, it was working fine, it posted the data to the next page and worked fine. But today i come on and the 406 error comes up.
Whats wrong?? whys this suddenly happend? and how can i fix it?
Here is some example code that works:
<form name="form1" method="post" action="index.php">
<input name="content" type="hidden" id="content" value="hello <>">
<input type="submit" name="Submit" value="Submit">
</form>
when clicked, index.php comes up fine
Here is some example code that does NOT work:
<form name="form1" method="post" action="index.php">
<input name="content" type="hidden" id="content" value="hello <b>">
<input type="submit" name="Submit" value="Submit">
</form>
when clicked, index.php comes up with the error.
Notice the <> and <b> change make the difference. I could understand that it might not work cos postin html tags, but it was fine yesterday!!!!
Like i said, it worked POSTING charactors like <B> </B> yesterday, no it doesnt.
Look at the page here:
Here is the page
You can try typing into the boxs and view html code behind it.
PLEASE HELP!!!!!!!!
THANKS ALOT