Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Codeigniter and mysql.

I got the facebook user birthday with 01/23/1999 format

and I got date YYYY/M/D format in mysql table.

How can I insert it?

I tried but I got 0000/00/00 and also tried str_to_date() but no idea why codeigniter cannot pass it.

share|improve this question
What have you tried? See ask advice, please. – John Conde Jan 24 at 22:05

2 Answers

up vote 1 down vote accepted

$datetoputinmysql = date('Y-m-d', strtotime($facebookvariable))

share|improve this answer
Thanks, same answer. Works as well. But you are late, nvm. I will accept yours because u got lower points. LOL – vzhen Jan 24 at 22:23
$mysql_date = date("Y/m/d", strtotime('01/23/1999'));
share|improve this answer
This is correct based on his question, but doesn't a mysql date field use YYYY-MM-DD ? – Drew Jan 24 at 22:08
Yes, but I suspect they made the field a varchar. It's a typical new programmer mistake. – John Conde Jan 24 at 22:11
@JohnConde No, i have already said i got a date format in mysql. I using date field. – vzhen Jan 24 at 22:15
Then my answer is 'more correct' although we basically said the same thing, it's just how you want to format the date. See here for formatting options: php.net/manual/en/function.date.php (although pretty sure you will want to use 'Y-m-d') – Drew Jan 24 at 22:20
Thanks .. this works – vzhen Jan 24 at 22:22
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.