Skip to content

Instantly share code, notes, and snippets.

@AbirHasnat
Created October 20, 2018 06:12
Show Gist options
  • Save AbirHasnat/88c8827c3531ba56505be73e01d0149d to your computer and use it in GitHub Desktop.
Save AbirHasnat/88c8827c3531ba56505be73e01d0149d to your computer and use it in GitHub Desktop.
<?php
class person{
public $name = "Hello World";
public $username ="Abir Hasnat";
public $password = "123";
public function login(){
return "Login Hosse..";
}
}
$dummy = new person();
echo $dummy -> username."<br>";
echo $dummy -> password;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment