Jump to content

Featured Replies

Всем добра, подскажите что не так делаю? Хочу изменить запрос в php скрипте

С - $query = sprintf("INSERT INTO `prefix_users` (`account`, `sum`) VALUES ('%s', '%d')",

На - $query = sprintf("UPDATE `prefix_users` SET `money` = `money` + '%s' WHERE `login` = '%d'", 

Думаю что то не так делаю, не могу понять. Делаю пополнение счета с сайта

 

Заранее спасибо, с меня как обычно лайкосик!)

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/
Share on other sites
$query = sprintf("UPDATE `prefix_users` SET `money` = `money` + %d WHERE `login` = '%s'", $amount, $login);

 

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/?&do=findComment&comment=212103
Share on other sites
3 минуты назад, Silence сказал:
$query = sprintf("UPDATE `prefix_users` SET `money` = `money` + %d WHERE `login` = '%s'", $amount, $login);

 

HTTP ERROR 500

            // Запрос в базу данных
            $conn = mysqli_connect($mysql_host, $mysql_user, $mysql_password);
            $database = mysqli_select_db($conn, $mysql_database);
            
            if($conn)
            {    
                                
$query = sprintf("UPDATE `prefix_users` SET `money` = `money` + %d WHERE `login` = '%s'", $amount, $login);
                mysqli_real_escape_string($conn, $_POST['label']), mysqli_real_escape_string($conn, $_POST['withdraw_amount'] * 1)); // множитель доната меняйте здесь
                mysqli_query($conn, $query);
            }
            mysqli_close($conn);
            
            return true;
        }
    }
    else echo "Error: request is not correct.";
}
else return exit();

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/?&do=findComment&comment=212104
Share on other sites
$query = printf("UPDATE `prefix_users` SET `money` = `money` + %d WHERE `login` = '%s'", $amount, $login);

 

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/?&do=findComment&comment=212105
Share on other sites
6 минут назад, Silence сказал:
$query = printf("UPDATE `prefix_users` SET `money` = `money` + %d WHERE `login` = '%s'", $amount, $login);

 

http error500 не изменилось не чего

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/?&do=findComment&comment=212106
Share on other sites

$amount и $login - нигде не присваиваются значения.

Link to comment
https://ipbmafia.ru/topic/28079-mysql-zapros-update/?&do=findComment&comment=212109
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.


Guest
Ответить в этой теме...

Последние посетители 0

  • No registered users viewing this page.