无法在表中存储单选按钮值



我试图在我的数据库表choice中保存单选按钮的值。我得到消息Data saved successfully,但没有值存储在表中。

形式:

   <form id="myForm" method="post" action="">
<div  data-role="fieldcontain">
                <fieldset data-role="controlgroup">
                    <center<legend>Choose in which category you'd like to be included</legend></center>
                    <p><input type="radio" name="choice[]" value="player" id="player" class="custom" />
                    <label for="player">Player</label>
                    <input type="radio" name="choice[]" value="coach" id="coach" class="custom" />
                    <label for="coach">Coach</label>
                    <input type="radio" name="choice[]" value="supporter" id="supporter" class="custom" />
                    <label for="supporter">Supporter</label>
                    <input type="radio" name="choice[]" value="sponsor" id="sponsor" class="custom" />
                    <label for="sponsor">Sponsor</label>
                    <input type="radio" name="choice[]" value="alumni" id="alumni" class="custom" />
                    <label for="alumni">Alumni</label>
                    <input type="radio" name="choice[]" value="other" id="o" class="custom" />
                    <label for="o">Other</label>
                </fieldset>
            </div>
<div data-role="fieldcontain">
    <label for="name">Please enter your name:</label>
    <input type="text" name="name" id="name" class="required" value="" autocomplete="off" /><br />
    <label for="email">Please enter your e-mail:</label>
    <input type="text" name="email" id="email" value="" class="required" autocomplete="off"  /><br />
    <label for="phone">Please enter your phone number:</label>
    <input type="number" name="phone" id="phone" value="" class="required" autocomplete="off"  />
<br><br>    
<label for="other">Other comments</label>
<textarea name="other" id="other" autocomplete="off" placeholder="Anything else you'd like to add?">
</textarea>
<p><strong id="error"></strong></p>
<br><br>
<input type="submit" id="save" name="save" value="Submit Form" />
<p id="response"></p>
</form>
</body>
</html>
PHP:

<?php 
$mysqli = new mysqli('localhost', 'root', '', 'E-mail list');
/* check connection */
if ($mysqli->connect_errno) {
printf("Connect failed: %sn", $mysqli->connect_error);
exit();
}
if(isset($_POST['save']))
{
$name = $mysqli->real_escape_string($_POST['name']);
$email = $mysqli->real_escape_string($_POST['email']);
$phone = $mysqli->real_escape_string($_POST['phone']);
$other = $mysqli->real_escape_string($_POST['other']);
$choice = $mysqli->real_escape_string($_POST['choice']);
$query = "INSERT INTO Players (`name`,`email`,`phone`,`other`,`choice`) VALUES ('".$name."','".$email."','".$phone."','".$other."','".$choice."')";
if($mysqli->query($query))
{
echo 'Data Saved Successfully.';
}
else
{
echo 'Cannot save data.';
}
}
?>

var_dump($_POST)显示什么数据涌入

还有一件事要检查它是保存还是提交?in $_POST['save']

编辑

获得完整的表单后-错误在于您的center标签

更改<center<legend><center><legend>

错误- & warr;在这个标签

相关内容

  • 没有找到相关文章

最新更新