I am storing two dates start/end date incremented by weeks, so for example I would have a start date of 05/31/2012 which would end four weeks later on 06/28/2012.
What I need to figure out is the “current week” for any given day. I would like to output as the week number and not a date. So if today were 06/08/2012 and my start/end date were 05/31/2012, the “current week” would be 2.
I think you want to use the dateDiff() function. Basically, you can drop your first date and second date in and count the difference in weeks.