Column Name Data Type Note food_id int This is t…
Column Name Data Type Note food_id int This is the primary key; auto generated by DB. name var_char(128) price float quantity int PHP code searched the table above for a bunch of food, and the SELECT retrieved only the name field. The results of the search were stored in the variable $results like this: $results = $stmt->fetchAll(); There is always more than one record returned. Write code that outputs all the names found in the search as a UL element with a set of bullets, one for each name.