Entry Level Coding With PHP - Unit 9 - An OOP Review

Enjoyed this video? Join my Locals community for exclusive content at crunchyfrog.locals.com!
2 years ago
55

Older to videos to fill some space until the evicted neighbour upstairs is gone.

Note: in the video, the line in the class MyMath which is:

$MyResults = new MyMath // Instantiate MyMath into an object

Is missing a semicolon, and should look like this:

$MyResults = new MyMath; // Instantiate MyMath into an object

Files: https://sourceforge.net/projects/entry-level-programming/files/

Loading comments...