/* PASTE YOUR PROVIDED EDUHUB CSS HERE */
PHP COURSE • LESSON 37

PHP Classes

A class is a blueprint for creating objects.

class.php


<?php


class Student{


public $name;


function show(){


echo $this->name;


}


}


?>