im working on a wordpress plugin, and i need some help in this.. in this situation i have already create a table called "wp_pfot", and a row called "title" in that table. i want to be able to check if a value in "title" doesnt exists, and if it doesnt exist, then perform an action. ive already tried this but it doesnt seem to be working.
global $wpdb
$table_name = $wpdb->prefix . "pfot";
$title = "some text";
if(!$wpdb->get_row("SELECT title FROM $table_name WHERE title = '" . $title . "'", 'ARRAY_A')) {
//do something
}
any help would be much appreciated!! thanks...