Getting blank date adding date to database (wordpress, php)
Basically I'm trying to add a date to my database (just a date, not datetime)
here's what I have so far:
$wpdb->insert(
'my_table',
array('date-adding'=>date('Y-m-d', '1994-06-14')),
array('%F')
);
it simply inserts 0000-00-00 so its something simple that's wrong - probly
the %F but can't figure out what :S Thanks
No comments:
Post a Comment