I am trying to split my date variable into month and year in the actual script this is coming froma database so I can't just make 2 date variables... can anyone... this is the line I am using
$date = date("F/Y");
list($one, $two) = explode("/" $date);
echo("$one<BR>$two");
I am getting a parse error on line 3 (list($one, $two) = explode("/" $date)😉
Thank you