I have the following clause
$curSong = $wpdb->query("DELETE FROM ".$wpdb->prefix . "current_requests WHERE id='".$_POST['remove']."'");
and id like to add where page_id = $postid to the WHERE clause
simple I know but its just the syntax I am a little unsure of
Thanks
Henry
You mean this?
You can add more conditions to the where clause using "AND" operator.