Get all months in php
for ($m=1; $m<=12; $m++)
{
$month = date(‘F’, mktime(0,0,0,$m, 1, date(‘Y’)));
echo $month;
}
Read More Posts
- How to Alternative to “header” for re-directs in PHP
- How to create options is select html tag(drpopdown) in php?
- How to get values and parameters from url with jquery in cordova with example?
- How to submit form with anchor tag (link) in jquery?
- How to link css,jquery and ajax with all files via one wordpress function?