okay...
say i have :
$date = "4 23 2003";
Now, I want to extract each of the three parts of the above variable into :
$month = "4";
$date = "23";
$year = "2003";
How the heck do I go about parsing the original $date variable? Is there a simple php command to do so or will I need to write a while loop to handle stuff between spaces?
Thanks,