53063593e3
Final
31 lines
626 B
PHP
31 lines
626 B
PHP
<?php
|
|
$object = new Subscriber;
|
|
$object->name = "Fred";
|
|
$object->password = "pword";
|
|
$object->phone = "012 345 6789";
|
|
$object->email = "fred@bloggs.com";
|
|
$object->display();
|
|
|
|
class User
|
|
{
|
|
public $name, $password;
|
|
|
|
function save_user()
|
|
{
|
|
echo "Save User code goes here";
|
|
}
|
|
}
|
|
|
|
class Subscriber extends User
|
|
{
|
|
public $phone, $email;
|
|
|
|
function display()
|
|
{
|
|
echo "Name: " . $this->name . "<br>";
|
|
echo "Pass: " . $this->password . "<br>";
|
|
echo "Phone: " . $this->phone . "<br>";
|
|
echo "Email: " . $this->email;
|
|
}
|
|
}
|
|
?>
|