<?php
/*
Template Name: Update Column
*/
?>
<?php
global $wpdb;
$pokemon = $current_user->ID;
$status = 'capture';
$checkPokedex = true;
if ($checkPokedex = true){
$wpdb->update( 'wp_semak', array( 'peranan' => $status), array( 'pemilik' => $pokemon ), array( '%s' ) );
echo 'Gotta Catch em All';
} else {
echo 'Full Party';
}
?>
ref: https://gist.github.com/benbalter/1607991