$weeks
$days
They both have the same amount of items in each and I want to display them to a user as a list.
I have tried foreach() but could not figure out how to make it ONLY GIVE ME ONE SET OF RESULTS!
This is as close as I can get....
Code: Select all
foreach ($weeks as $week)
{
echo "$week, ";
foreach ($days as $day)
{
echo "$day <br> ";
}
}