私はクイズ システムを作成しています。HTML フォームの $_POST から質問テキストを挿入しようとすると、空の値が挿入され、question_id はゼロのままです。
Question text: <br />
<textarea name="qtext" rows="2" style="width:200px; height:100px;" name="qst"></textarea> <br />
PHP 部分
$post_qtext = $_POST['qst'];
$post_qtext = mysql_real_escape_string($post_qtext);
$q_insertquestions = mysql_query("INSERT INTO `questions` (`question`,`type`) VALUES ('$post_qtext','1')");
$q_lastquestioninserted = mysql_insert_id($q_insertquestions);
テーブルの question_id は int(11) です mysql の質問は varchar(60) です