I believe you can split the string based upon whatever character: &.
Split the string, then read the values.
~Brett
EDIT
http://us2.php.net/split
So, you would have to edit your variable so that it strips all the text, and leaves the & symbols.
So you create a list:
list($var1, $var2, $var3)
then, set it's values by splitting your other variable:
list($var1, $var2, $var3) = split('&', $var);
Then access your values by referring to the proper variable: $var1, $var2, $var3.
So:
<?php
$variable = "Brett.Patterson.January.13.2004";
list($fname, $lname, $mbirth, $fnum, $fyear) = split('.', $variable);
echo('First Name: '.$fname.'<br>');
echo('Last Name: '.$lname.'<br>');
echo('Birth Month: '.$mbirth.'<br>');
echo('Favorite Number: '.$fnum.'<br>');
echo('Favorite Year: '.$fyear.'<br>');
?>
Would end up outputting this:
First Name: Brett
Last Name: Patterson
Birth Month: January
Favorite Number: 13
Favorite Year: 2004
I hope this has helped you.
~Brett