Hello, I have doubts as to how I can pass the month from number to name before I had my date on date (Y-m-d) I wanted to print the month and can divide it in parts with this
$mostrarso=mysql_query($so);
while($i=mysql_fetch_array($mostrarso)){
$fecha_mes=$i[1];
$partes = explode('-', $fecha_mes);
$_fecha = "{$partes[2]}-{$partes[1]}-{$partes[0]} ";
I print it this way
<td><?php echo $partes[1] ;?></td>
Now I want that value of the month instead of number that is the name of the month like January, February etc.