I want to delete every row from the database where the Submission field is not in the future. The date is stored this way:
09/10/2013
So, in this example i want to delete this record, because its already expired. This is where i am:
$wpdb->query("DELETE FROM `$table_name` WHERE `Submission` < NOW()");
Looks fine for me, but this query deletes everything from the table, not just rows in the past.