私は評価システムに取り組んでいます。ユーザーはドロップダウン メニューでアイテムを評価できます。
<select name = "theRating">
<option>Select...</option>
<option>1 Star</option>
<option>2 Stars</option>
<option>3 Stars</option>
<option>4 Stars</option>
<option>5 Stars</option>
</select>
同じドキュメントで、数行後に、選択したオプションを URL で送信したい
<form action="', $scripturl, '?action=rateThisThing?rating=',$_POST['theRating'],'" method="post">
<input type="submit" value="Rate this"></form>
なぜこれが機能しないのですか?$_POST['theRating'] が空のようです [または、少なくとも、リダイレクト時に URL に表示されません...]