Okay so basically I have two variables one called $day
and another called $time
what I'm trying to do is convert both of these into a unix time-stamp so for example;
$day = 'Monday';
$time = '14:00:00';
So what I'm looking for is a $timestamp
variable that would echo out the next Monday
coming up at 14:00:00
in a unix timestamp format.
I'm guessing the hardest part of this would be the fact that the day is not a specific date more a day of the week meaning it would have to select the next monday
coming up, or the next tuesday...
for example.
Thanks for any help.