This question already has an answer here:
I want to echo the current month in full text. eg : june;
echo date('M');
// result jun.
but i want to display full month. how can i do that.
</div>
You can use date
with F (have a look at the docs).
So date("F")
will output June
.