digitalgod Posted October 11, 2006 Share Posted October 11, 2006 Hey guys,how can I convert a day into a numerical value?like monday --> 1 tuesday --> 2 etc Quote Link to comment Share on other sites More sharing options...
obsidian Posted October 11, 2006 Share Posted October 11, 2006 [code]<?phpecho date('w');?>[/code]so, as with any other date call, pass in a timestamp of the date you want the day of the week for as a second parameter, and you're good to go. Quote Link to comment Share on other sites More sharing options...
digitalgod Posted October 11, 2006 Author Share Posted October 11, 2006 that I know already, I guess I wasn't clear before :PWhat I meant to say is that I have a dropdown, the value of the dropdown is a date in this format Y-m-d and what's displayed in the dropdown is something like date("l (M jS)") now when a user selects a date it calls a javascript function which extracts the day like sovar text = main_select.options[main_select.selectedIndex].text.split(" ");var day = text[0].toLowerCase();now I know that by using a switch statement I can change that string to a numerical value but I was wondering if there was a more efficient way of doing it. Quote Link to comment Share on other sites More sharing options...
fenway Posted October 11, 2006 Share Posted October 11, 2006 Well, the Date() constuctor can take the full six-parameter version, so once you have a proper JavaScript Date object, you should be fine. 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.