我正在创建一个表单,并希望将用户数据和随机配置文件图像一起插入,但是我的数据未插入phpMyAdmin中。
我正在使用出色的文本编辑器。
if(empty($error_array)) {
$password = md5($password);
$rand = rand(1, 2);
if($rand == 1)
$profile_pic = "E:/xampp/htdocs/social/assets/images/profile_pics/defaults/head_emerald.png";
else if($rand == 2)
$profile_pic = "E:/xampp/htdocs/social/assets/images/profile_pics/defaults/head_deep_blue.png";
$query = mysqli_query($con, "INSERT INTO users VALUES ('', '$fname', '$em', '$password', '$date', '$profile_pic', '0', '0', 'no', ',')"); ```
}
我的数据没有插入到我的数据库中。