PHP - Programming Language
This course covers the basics of programming in PHP. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Classes And Objects

Lesson 29
Author : 🦒
Last Updated : November, 2017


Code

Copyclass Book{
     var $title;
     public $author;
};


$book1 = new Book;
$book1->title = "Harry Potter";
$book1->author = "JK Rowling";

echo $book1->title."<br>";