Write a PHP script to change month number to month name
<?php $month_num = 7; $month_name = date("F", mktime(0, 0, 0, $month_num, 10)); echo $month_name."\n"; ?>
Sample Output:
July
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer