/ Published in: PHP
This is a sample class being used for demo purposes
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php class User{ protected $firstname; protected $lastname; public function __construct($data) {// We'll write this later } } ?>