Hi, I am using a date in DB in this format 2004-07-15
and Showing the date in the format 15-July-2004 using this code
echo "<tr>";
echo "<th bgcolor=#FFCC00>LA Start Date</th>";
echo "<td bgcolor=#FEE9A9>" .date("j-F-Y",strtotime($row['LAPeriodStart'])). "</td>";
echo "</tr>";
Now I want all the records from this date field for the month of July.
How I can get all the records for month acording to my option.
please guide me.