0335342e00
First Draft of the Example Files
11 lines
163 B
PHP
11 lines
163 B
PHP
<?php
|
|
class User
|
|
{
|
|
function __construct($param1, $param2)
|
|
{
|
|
// Constructor statements go here
|
|
public $username = "Guest";
|
|
}
|
|
}
|
|
?>
|