現在の PHP コードを取得してデータベースに挿入しようとしています。現在、名、姓、および電子メールを保存できますが、残りのフォーム データ「性別」および「コンソール」を保存することはできません。ここにコードがあります
<!Doctype html public>
<html>
<body>
fill out the following form:
<table border="1" cellpadding="10">
<td>
<h1> Devices owned Survey </h1>
<form action="submit_answer.php" method = "POST">
First Name: <br /> <input type="text" name="first" /><br />
<br />
Last Name: <br /> <input type="text" name="last" /> <br />
<br />
Email: <br /> <input type="text" name="email" /> <br />
<br />
<u>Gender</u>: <br />
<br />
<input type="radio" name="gender" value="male" /> Male<br />
<input type="radio" name="gender" value="female" /> Female <br />
<br />
<u>I Have The Following:</u> <br />
<br />
<input type="checkbox" name="console" value="Playstation3" /> Playstation 3<br />
<input type="checkbox" name="console" value="Xbox360" /> Xbox 360 <br />
<input type="checkbox" name="console" value="Wii" /> Wii <br />
<input type="checkbox" name="console" value="Iphone" /> Iphone <br />
<input type="checkbox" name="console" value="MacBook" /> MacBook <br />
<br />
<input type="submit"/>
</form>
</td>
</table>
</body>
</html>
PHP //SUMBMIT FORM
<?php
define('DB_NAME', 'survey');
define('DB_USER', 'root');
define('DB_PASSWORD', 'XXXX');
define('DB_HOST', 'localhost');
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if (!$link)
{
die('Could NOT Connect: ' . mysql_error());
}
$db_selected = mysql_select_db(DB_NAME, $link);
if (!$db_selected)
{
die ('Cant\'t use' . DB_NAME. ':' . mysql_error());
}
echo 'Connected Sucessfully';
$first = $_POST["first"]; // Since method=”post” in the form
$last = $_POST["last"];
$email = $_POST["email"];
$gender = $_POST["gender"];
$console = $_POST["console"];
$sql = "INSERT INTO survey (first, last, email) VALUES
( '$_POST[first]','$_POST[last]','$_POST[email]','$_POST[gender]','$_POST[console]')";
$result = mysql_query($sql);
$result = mysql_query($sql) or die ("could not save record");
mysql_close();
?>
//Also trying to validate the form so each question is answered