You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
7 years ago | |
|---|---|---|
| CRUD Example | 8 years ago | |
| API.md | 7 years ago | |
| API2.md | 7 years ago | |
| Nested_Models.md | 7 years ago | |
| PHP.md | 7 years ago | |
| PHP2.md | 7 years ago | |
| PHP_CRUD.md | 8 years ago | |
| README.md | 7 years ago | |
README.md
PHP notes
Lessons
Day 1
Lectures
Lab/HW ideas
- Test syntax knowledge
- Mimic Find/All with 2D arrays and nested objects
Day 2
Lectures
Lab/HW ideas
- Build CRUD functionality for locations (id, street, city, state)
- Model is
Location, factory isLocations
- Model is
Day 3
Lecutres
Lab/HW ideas
- Implement find for both
/people/:idand/locations/:id - Stretch: implement a many-to-many relation with a
Companiesmodel- use a
jobsintermediary table
- use a