ooda55 Posted November 28, 2009 Share Posted November 28, 2009 Hi there im working on a reservation system for a weekly club i have everything finished but the system requires the admin to add the date (eg. 09/12/2009) of every wednesday to a mysql table so that a drop down menu of wednesdays can be created on teh reservations page i have seen those little dropdown javascript callenders before but can someone please tell me if it is possible to make one that only displays wednesdays? thanks alot chris Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/ Share on other sites More sharing options...
ooda55 Posted November 28, 2009 Author Share Posted November 28, 2009 it will need to be in UK date format (DD/MM/YYYY) just to avoid confusion thanks again chris Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966916 Share on other sites More sharing options...
phant0m Posted November 28, 2009 Share Posted November 28, 2009 this will output the next 10 Wednesdays: <?php for($i = 0; $i < 10; $i++){ echo strftime("%d/%m/%Y",strtotime("next wednesday +$i week"))."<br />"; } ?> I hope it'll help Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966920 Share on other sites More sharing options...
ooda55 Posted November 28, 2009 Author Share Posted November 28, 2009 Thanks thats a good start, but how can i put these into a dropdown menu, like in a form <option>datesgohere</option> is as far as i got Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966926 Share on other sites More sharing options...
phant0m Posted November 28, 2009 Share Posted November 28, 2009 just use your intuition <?php for($i = 0; $i < 10; $i++){ echo '<option>'.strftime("%d/%m/%Y",strtotime("next wednesday +$i week")).'</option>'; } ?> Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966930 Share on other sites More sharing options...
ooda55 Posted November 28, 2009 Author Share Posted November 28, 2009 ahh cheers mate Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966935 Share on other sites More sharing options...
phant0m Posted November 28, 2009 Share Posted November 28, 2009 you're welcome Link to comment https://forums.phpfreaks.com/topic/183214-add-wednesdays-to-mysql/#findComment-966938 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.