Notice: Undefined property: User::$alias in /home/sois/public_html/index.php on line 9
class User {
private $m_user_id;
public $status;
public $alias = 'test';
public function __construct($user_id) {
// Query to look for stuff and assign to properties
$this->alias = 'blah blah';
}
$user = new User($user_id);
echo $user->alias;
Why am I getting an error? I am calling some of the other methods and they work on the same instance. Help!