Hi,
I have this code
date("l j F Y");
In that format im trying to get it to pick a random date 4-10 later than the current date. Any ideas
Thanks
Untested:
date('l j F Y', strtotime('+' . rand(4,10) . ' days'));
Great thanks