sseeley Posted November 18, 2009 Share Posted November 18, 2009 Hi I hope someone can help me. I have a date string in PHP (a UK date of birth). An example is 01-04-1977. I am inporting this into a Javascript variable var date_of_birth = new Date(date_of_birth) . However when I use document.write(date_of_birth) is it showing in a different format. Can someone help me convert my date to a javascript date so I do some calculations on using the current date? Many thanks in advance. Stuart Link to comment https://forums.phpfreaks.com/topic/182063-javascript-date-php/ Share on other sites More sharing options...
Ken2k7 Posted November 18, 2009 Share Posted November 18, 2009 var date = '01-04-1977'; var adate = date.split('-'); var date_of_birth = new Date(adate[0] + ' ' + adate[1] + ', ' + adate[2]); Link to comment https://forums.phpfreaks.com/topic/182063-javascript-date-php/#findComment-960400 Share on other sites More sharing options...
sseeley Posted November 18, 2009 Author Share Posted November 18, 2009 If I use alert(date_of_birth) with this code the alert I get is NaN? Any ideas? Link to comment https://forums.phpfreaks.com/topic/182063-javascript-date-php/#findComment-960409 Share on other sites More sharing options...
Ken2k7 Posted November 18, 2009 Share Posted November 18, 2009 With what code? Link to comment https://forums.phpfreaks.com/topic/182063-javascript-date-php/#findComment-960432 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.