I need help due soon. I'm not asking to copy anyone's exact answers, I can learn and re-write my own later. It's about
1)From a PHP page, create a MySQL database
2)From a PHP page, create the appropriate tables
3)From a PHP page, apply CRUD operations using SQL language
--------------------------------------------------
The database contains the following elements:
ID of type INT and length 6
Name of type VARCHAR and length 40
Type of type VARCHAR and length 40
Make of type VARCHAR and length 40
Model of type VARCHAR and length 40
and
The items from an input csv file are imported into the database table through a PHP script
and
A Javascript script is used to search through the items in the database when the user enters text in the search field.
No items are displayed when the search field is empty.