I found a post that may be able to shed some light.
http://www.phpbuilder.com/board/showthread.php?t=10357487
This is much like what I'm looking, however the criteria is a bit different. The database table contains 3 columns: date, location, and address.
This may get a bit hairy, so please bear with me.
Using PHP, I would like to query the database based on a date, in the format of MM/DD/YYYY, but the date will be one week beforehand (i.e. the date will be 07/22/2008 if the date supplied was 07/29/2008). The database will be searched for dates one week before the date supplied and for all dates thereafter.
The print out I would like would be as follows (in a while loop, I presume):
<input type='radio' id='location' value='07/23/2008, location 1, address 1 /> 07/23/2008: Location 1, Address 1 <br />
<input type='radio' id='location' value='07/23/2008, location 2, address 2 /> 07/23/2008: Location 2, Address 2 <br />
<input type='radio' id='location' value='07/29/2008, location 1, address 1 /> 07/23/2008: Location 1, Address 1<br />
<input type='radio' id='location' value='07/29/2008, location 3, address 3 /> 07/29/2008, Location 3, Address 3
If need any clarification, I'll try to help you. Any and all help would be greatly appreciated.