最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Cannot transfer ajax post data from js to php file

matteradmin9PV0评论

I need to click on the button to send some data to the php file and update the user's balance in the database.

quotes.js Part of the code:

var data = {
    sell: sell_current_quote,
    buy: bue_current_quote
};
$.ajax({
    type: 'POST',
    url: '/wp-content/themes/NAME/page-trading.php',
    dataType: 'json',
    data: data,
    success: function(my_data) {
        alert('Ok');
    }
});

page-trading.php Part of the code:

if( isset($_POST['sell']) && isset($_POST['buy']) ) {

$sell = json_decode($_POST['sell']);
$buy = json_decode($_POST['buy']);

global $wpdb, $userdata;

$wpdb->update( PREF .'users_balance', 
    array(
        'user_balance_2' => 100
    ), 
    array(
        'user_id'      => $userdata->id,
        'user_schet_2' => 00000001,
    ), 
    array("%d","%d")
);

die();
}

As a result, the database is not updated. in the console, in data headers come about sell: 0.99788 buy: 0

Tell me, please, how to do it right?

Post a comment

comment list (0)

  1. No comments so far