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 Quote Link to comment 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]); Quote Link to comment 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? Quote Link to comment Share on other sites More sharing options...
Ken2k7 Posted November 18, 2009 Share Posted November 18, 2009 With what code? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.