Hi guys. I am new to posting but have been browsing for awhile now. I am in the process of learning PHP on my own and its not coming to well ATM. So I have a little coding down but I am stuck on this problem:
/ Using only a array and a foreach loop, write a program that prints the days of the week \
$days = array {
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday',
};
//This is where I need help with the code
echo "$day \r\n";
?>
Thanks in advance!