以下のコードのような非常に単純なフォームです。
<form method="POST" action="news.php?nid=2">
<textarea id="txtcomment" style="width:100%; height: 70px;" maxlength="300"></textarea><br /><br />
<input type="submit" class="button" style="float: right; cursor:pointer;" value="Comment">
</form>
しかし、news.php で「txtcomment」の値を取得できません
echo $_POST['txtcomment'];
それは何も返しません...