Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. $user = new User();
  3. $user->name = "Saheel";
  4. $user->password = "bigSecret";
  5. $user->print_something();
  6.  
  7. class User
  8. {
  9.     public $name;
  10.     public $password;
  11.     public function print_something()
  12.     {
  13.         echo "Here is it, something.<br />";
  14.         echo $name." has ".$password." as his password.";
  15.     }
  16. }
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement