10 lines
127 B
PHP
10 lines
127 B
PHP
<?php
|
|
class User
|
|
{
|
|
function __construct($param1, $param2)
|
|
{
|
|
// Constructor statements go here
|
|
}
|
|
}
|
|
?>
|