我有一个小问题,字段没有插入到我的users表中。我有两个表格如下:
用户-id、gamerid、电子邮件、密码、国家/地区、国家/地区代码国家/地区-国家/地区id、国家/地区、国家/地区代码
现在我有了一个注册表单,包括gamerid、电子邮件、密码和国家选择(使用php从国家表中提取)
我的问题是,当我提交表单时,我想运行一个查询,从表中提取与用户选择的内容相匹配的国家代码,并将这些字段插入用户表中。我所有的数据都正确插入,除了country_code。
这是我在html选择部分的代码:
<select name = "country_create" style = "height: 25px; width: 180px;">
<option value="0" selected="selected" class = "signup_form_country_select_class">Select your country</option>
<?php
include "config.php";
$connection = mysql_connect($host, $username, $password) or die(mysql_error());
mysql_select_db($dbname, $connection) or die(mysql_error());
$result = mysql_query('SELECT country FROM countries');
while($row = mysql_fetch_array($result))
{
echo '<option value="'.$row['country'].'">'.$row['country'].'</option>';
}
?>
</select>
下面是注册脚本中的php:
$connection = mysql_connect($host, $username, $password) or die(mysql_error());
mysql_select_db($dbname, $connection) or die(mysql_error());
// INPUT CLEANING FUNCTION
function clean($str)
{
$cleaned = mysql_real_escape_string(strip_tags($str));
return $cleaned;
}
$gamerid = clean($_POST['gamerid_create']);
$email = clean($_POST['email_create']);
$password = clean($_POST['password_create']);
$country = ($_POST['country_create']);
$cc_qry = "SELECT country_code FROM countries WHERE country = '$country'";
$country_code = mysql_query($cc_qry);
$insert = "insert into users(gamerid,email,password,country,country_code) values('$gamerid','$email','$password','$country','$country_code')";
mysql_query($insert, $connection);
提前谢谢各位!
首先-使用PDO或mysqli函数,其次-您还必须从查询结果中获取数据:
$res = mysql_query($cc_qry);
$res_cc = mysql_fetch_assoc($res);
$country_code = $res_cc['country_code'];