Question: in php adding a page that lets you add and delete makes of cars. You will also add edit buttons to the Parts List table,

in php adding a page that lets you add and delete makes of cars. You will also add edit buttons to the Parts List table, which will include an Edit Part form.

In the make_list.php file, write the code that creates the make table with all of the make names in the first column and Delete buttons in the second column (see below). It should work similarly to how the index.php file works.

in php adding a page that lets you add and delete makes

here is the code :

// Get all makes $query = 'SELECT * FROM makes ORDER BY makeID'; $statement = $db->prepare($query); $statement->execute(); $makes = $statement->fetchAll(); $statement->closeCursor(); ?>

Dooley's Automotive

Part Manager

Make List

Name

Add Make

List Parts

© Dooley's Automotive, Inc.

Part Manager Make List Add Make List Par

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!