if $string = "0203",what is the correct syntax to split that into two 2-digit strings (eg: "02" and "03") using regular expressions? I'm then going to convert that into "February, 2003" with mktime().
Thanks
$month = substr($string, 0,2); $year = substr($string, 2,2);
HTH,
insectis
Many thanks.