Question: // Task #1 Generate the date using php. // Save it to a variable. // Output it within a p tag in your body. //
// Task #1 Generate the date using php.
// Save it to a variable.
// Output it within a p tag in your body.
// Task #2 Hard-code an array of strings.
// Each string is a quote.
// Within the body of your html, loop through this array.
// Output each quote within a
tag
// Task #3 The following array of hashes
// contains title and URLs for websites.
$links = [
['title' => 'Stung Eye', 'href' => 'http://stungeye.com'],
['title' => 'ODM', 'href' => 'http://goo.gl/cfHwe7'],
['title' => 'Reddit', 'href' => 'http://reddit.com']
];
// Within the body of your html, loop through this array.
// Generate a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
