when i use form to post text ,
the result php get dose not match the source i posted,
the content which php get , will be repeated.
please paste a long enough (you can copy a peice of news from cnn.com) text in to the textarea , then submit.
you can get a result ,but some of the text in the paragraph which you pasted was repeated.
test page:
http://www.justbsd.com/test/test.php
Source
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
<form name="form1" method="post" action="">
<textarea name="text" cols="100" rows="20"></textarea>
<input type="submit" name="Submit" value="Submit">
</form>
<? echo $text; ?>
</body>
</html>
my server settings:
http://www.justbsd.com/test/phpinfo.php
who can tell me why this strange thing will happen?