Parameters: First Name=John Last Name=Doe Date of Birth=10/1/1980
How would I tell php to read this string, and assign the following variables:
$first_name = "John";
$last_name = "Doe";
$dob = "10/1/1980";
I'm kinda new at this, so sorry if it is easy. 🙂