update query wordpress
global $wpdb;
$dbData = array();
$dbData['last_login_time'] = time();
$wpdb->update('table_name', $dbData, array('user_id' => 1));
update query wordpress
global $wpdb;
$dbData = array();
$dbData['last_login_time'] = time();
$wpdb->update('table_name', $dbData, array('user_id' => 1));
update_option wordpress
//store in one variable
$multidimensional_options = array(
'inner_array'=>array(
'foo' => 'bar',
'hello' => 'world',
),
);
//Update entire array
update_option('my_multi_options', $multidimensional_options);
//Get entire array
$my_multi_options = get_option('my_multi_options');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us