Question:
$customers = array(); $customers[] = array("Jason Gilmore", "jason@example.com", "614-999-9999"); $customers[] = array("Jesse James", "jesse@example.net", "818-999-9999"); $customers[] = array("Donald Duck", "donald@example.org", "212-999-9999"); foreach ($customers AS $customer) { vprintf("<p>Name: %s<br />E-mail: %s<br />Phone: %s</p>", $customer); }
A Name: Jason Gilmore<br />E-mail: ">jason@example.com]jason@example.com<br />Phone: 614-999-9999
B Name: Jesse James<br />E-mail: ">jesse@example.net]jesse@example.net<br />Phone: 818-999-9999
C Name: Donald Duck<br />E-mail: ">donald@example.org]donald@example.org<br />Phone: 212-999-9999
D All of these will be printed at a time
+ AnswerD
+ Report