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.
1.1 KiB
1.1 KiB
PHP notes
Lessons
Day 1
- Morning Lecture: Intro to PHP
- Morning Lab: Recreate Landscaper
- Afternoon Lecture: Intro to PHP 2
- Afternoon Lab: Continue with Recreate Landscaper
- Homework: Mimic Find/All with 2D arrays and nested objects
Day 2
- Morning Lecture: PHP/Postgres API - READ
- Morning Lab: Update Lecture Code with READ for locations and companies
- Afternoon Lecture: PHP/Postgres API - CREATE, UPDATE, DELETE
- Afternoon Lab: Update Lecture Code with CREATE, UPDATE, DELETE on locations and companies
- Homework: Finish with labs
- Stretch: Implement find for
/people/:id,/locations/:id, and/companies/:id
- Stretch: Implement find for
<!-- - Model is `Location`, factory is `Locations` -->
Day 3
Lecutres
- Morning Lecture: Nested Models
- Morning Lab: Implement find for both
/people/:idand/locations/:idwith nested models - Afternoon Lab (no lecture): Implement a many-to-many relation with a
Companiesmodel- use a
jobsintermediary table
- use a
- Homework: Finish lab