Backend Processing

Web Application Path

Rate This Course

Please share your feedback

Skip

Backend Processing with Rob Tietje

Classes

Classes

PHP

This lesson covers using classes and creating objects.

4m 48s
Completed
Lessons
Getting Started
1 Introduction 11m 10s
2 Basic Operations 5m 3s
Fundamentals
3 Loops & Functions 4m 12s
4 Classes 4m 48s
5 Useful PHP Functions 4m 56s
6 require_once 2m 36s
7 Processing Form Data 5m 38s
8 Sessions 6m 33s
9 JavaScript Object Notation (JSON) 7m 53s
10 File Uploads 4m 12s
MySQL
11 MySQL Basics 5m 34s
12 CRUD Operations 6m 59s
13 PHP & MySQL 4m 34s
14 PHP MySQL Operations 6m 4s
Photo Application
15 Final Project 6m 34s
Assignment
1

Create a class to represent an employee. Include member variables for name, age, and hourly wage.

Use the constructor for initializing the class and have functions for accessing the member variables. Also include a function that outputs a description of the employee and calculated earnings for a 40 hour week.

Test the class by creating two employee objects and outputing the description.