Hello,
I am trying to run a specific query where I need to check each day separately in PHP. In php, how do I increment the date by 1 day .. ie, at the end of my while loop, i increment the day by one...
lou
take a look at this page:
http://phpbuilder.net/manual/function.date.php
So you could try something like this:
date("blah blah")+1;
depending on what info you have for the date function. you'll probably need to use mktime() also.
hope this helps, good luck!!