I was afraid of the confusion
Alright I want $day to store the name of the day via the date(l) command.
Then I want to establish a variable $email to equal the value of the currently selected day stored day
So as an example this code doesn't work but what I want to happen
$Saturday = "jdoe@internet.com,jiml@internet.com";
$Sunday = "mmorgan@internet.com,rjames@internet.com";
etc.....
Then I want to send out a mail to the right set of people based on the day so....
$day = date(l);
$email = value of $day + the $
so who would actually be a pointer to $Saturday or $Sunday etc...
That way I can have the page automatically email the correct set of people based on the day with this
$to = $email;
mail($to, $subject, $message);
I hope that clears it up a bit