[PHP] Date ranges

2005-01-24 Thread Mikey
Hi NG, I have a page that is for booking attendance to events, and instead of using a date picker, I want to display drop-down selects which cover the ranges of dates that the event is occurring at. My question is, is there an easy way to determine the dates in between the date from and to that

RE: [PHP] Date ranges

2005-01-24 Thread Jay Blanchard
[snip] I have a page that is for booking attendance to events, and instead of using a date picker, I want to display drop-down selects which cover the ranges of dates that the event is occurring at. My question is, is there an easy way to determine the dates in between the date from and to that is

RE: [PHP] Date ranges

2005-01-24 Thread Mikey
*PLEASE NOTE* I know that if I spent time on it, I would be able to do it, but I have A very close deadline and if anyone else has been through this I would *really* appreciate the help... Are you using MySQL? If so you can start with the DATE_ADD and DATE_SUB functions.

RE: [PHP] Date ranges

2005-01-24 Thread Bret Hughes
On Mon, 2005-01-24 at 14:07, Mikey wrote: *PLEASE NOTE* I know that if I spent time on it, I would be able to do it, but I have A very close deadline and if anyone else has been through this I would *really* appreciate the help... Are you using MySQL? If so you can start with the DATE_ADD

RE: [PHP] Date ranges

2005-01-24 Thread Jay Blanchard
[snip] *PLEASE NOTE* I know that if I spent time on it, I would be able to do it, but I have A very close deadline and if anyone else has been through this I would *really* appreciate the help... Are you using MySQL? If so you can start with the DATE_ADD and DATE_SUB functions.

Re: [PHP] Date ranges

2005-01-24 Thread Richard Lynch
Mikey wrote: I have a page that is for booking attendance to events, and instead of using a date picker, I want to display drop-down selects which cover the ranges of dates that the event is occurring at. My question is, is there an easy way to determine the dates in between the date from

Re: [PHP] Date ranges

2005-01-24 Thread Jason Wong
On Tuesday 25 January 2005 04:07, Mikey wrote: *PLEASE NOTE* I know that if I spent time on it, I would be able to do it, but I have A very close deadline and if anyone else has been through this I would *really* appreciate the help... Are you using MySQL? If so you can start with the

RE: [PHP] Date ranges

2005-01-24 Thread Mikey
I know that if I spent time on it, I would be able to do it, but I have A very close deadline and if anyone else has been through this I would *really* appreciate the help... Are you using MySQL? If so you can start with the DATE_ADD and DATE_SUB functions. http://www.mysql.com/date Then