i try to update in a table of wordpress. but i camt't. what is wrong?
The code I am using for this is the following code:
$wpdb->update( $wpdb->membership, array( 'status' => "token", 'transaction_id' => $resid ), array( "code", $code) );
i try to update in a table of wordpress. but i camt't. what is wrong?
The code I am using for this is the following code:
$wpdb->update( $wpdb->membership, array( 'status' => "token", 'transaction_id' => $resid ), array( "code", $code) );
i use this method and worked!
$wpdb->query("UPDATE $wpdb->membership SET status = 'token' ,transaction_id = '" . $resid . "' WHERE code = '" . $code . "' LIMIT 1");