Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySqli 问题:我使用此查询来更新表中的字段。
mysqli_query($con, " UPDATE users SET profile_pic = '$img_name' WHERE id = '$id' ");
在哪里
$img_name = time().$id;
和
$id = 3;
当我echo $img_name,它给出正确的结果。但是存储在数据库中的值它给出了 2147483647,即我的 32 位计算机的最大整数值。
echo $img_name
profile_pic
'profile'.$id.'.jpg'