Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how we show full name of month in posts

const monthNames = ["January", "February", "March", "April", "May", "June",
  "July", "August", "September", "October", "November", "December"
];

const d = new Date();
document.write("The current month is " + monthNames[d.getMonth()]);
 Run code snippet
Source by xaimweb.com #
 
PREVIOUS NEXT
Tagged: #show #full #month #posts
ADD COMMENT
Topic
Name
3+9 =