here's how to output the date, duh!
$entryDate = date("l, F dS, Y");
which outputs the date Thursday, June 20th, 2002.
How can I add 31 days to this so it outputs Sunday, July 21st 2002.
date('l, F dS, Y', time()+31243600);
You're tha man