全て。
私の Codeigniter には 1 つの input type="text" と 1 つの textarea があります。$_POST配列にはinput type="text"フィールドが含まれていませんが、textareaが含まれていることがわかります(Chromeネットワークソース)。入力をテキストエリアに変更しようとしましたが、うまくいきました...
<form action="news_save" method="post" accept-charset="utf-8">
<label class="control-label span3" for="subj">Subject</label>
<input type="text" id="subj" name-"subj" class="row-fluid">
<label class="control-label span3" for="body">Body</label>
<textarea rows="3" name="body" class="row-fluid" id="body"></textarea>
<button type="submit" class="btn btn-primary">Save</button>
</form>
何か提案はありますか?