Declare an array week and assign the value of the days to each index number in the order of occurrence and echo the result on the screen.
Answers
Answered by
0
Answer:
$days = [
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday'
];
Explanation:
Similar questions