I'm using a javascript date selector within a HTML form, and it's displaying as it should in the browsers I've tested in (Firefox 3, Opera 9, Chrome, IE7) but it displays ...
I need the user to select his/her date of birth and I'm using javascript & php.
var date_arr = new Array;
var days_arr = new Array;
date_arr[0]=new Option("January",31);
date_arr[1]=new Option("February",28);
date_arr[2]=new Option("March",31);
date_arr[3]=new ...
Hi, the author mentioned it may take him weeks or months to reply, so i thought this would be the best place to ask the question. So with the code you have given can i just add this to the existing code or do i need to remove anything? Thanks for your help.
Hello, I womdered if anyone might have some advice. At the moment I have some code (borrowed off someone else and modified a bit) that allows the user to select a start and end date via combo boxes. What I want to be able to do is restrict the starting date, so that the user only sees the dates from the ...