I am building a drip feed into my blog management software…
So you load up articles and it drips them out over x amount of days…
What gets submitted is date in this format 11/16/2011 (month/day/4 digit year) also the amount of time to drip (2-30 days)
So I would like it to pick the date out the amount of drip days selected and then randomly pick dates in between to post…
I think this may be easier converting to unix timestamp and then converting back for the database insertion…? Not sure…
After that it would randomlly select an hour, minute and second (although that should be easy) (ie rand(0,24) rand(0,60) rand(0,60) etc…