gpt4 book ai didi

php - MySQL 查询需要额外的页面刷新以显示 UPDATE 更改

转载 作者:行者123 更新时间:2023-11-29 04:27:38 25 4
gpt4 key购买 nike

为什么提交后不显示更改?提交后必须刷新页面才能看到更改。

$full_path = 'users/'.$_SESSION['user_id'].'/images/'.$name;

if($query = mysql_query("UPDATE user_info
SET user_image = '$full_path'
WHERE user_id = '".$_SESSION['user_id']."' AND
username = '".$_GET['username']."'
"))
{

if(move_uploaded_file($tmp_name, '/Applications/XAMPP/xamppfiles/htdocs/'.$full_path)) {
echo 'Got it!';
}

}

因此,如果我上传/点击提交,查询成功,但在额外的页面刷新之前您看不到更改。

最佳答案

在执行 PHP 页面时,请确保您的更新查询在您选择数据之前。

关于php - MySQL 查询需要额外的页面刷新以显示 UPDATE 更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8395730/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com