Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. private var $username;
  2.         private var $password;
  3.        
  4.         public function formO($action, $method) {
  5.         echo '<form action"'.$action.'"> method"'.$method.'">';
  6.         }
  7.        
  8.         public function formC() {
  9.         echo '</form>';
  10.         }
  11.    
  12.         //The form below contains just the username and password part of the form.
  13.         public function uForm() {
  14.        
  15.         echo '
  16.         Username: <input type="text" name="klusername">
  17.         <br />
  18.         Password: <input type="password" name="klpassword">
  19.         ';
  20.        
  21.         }
  22.        
  23.         //Used for opening and closing 'center' when needed.
  24.         public function centerO() {
  25.             echo '<center>';
  26.         }
  27.        
  28.         public function centerC() {
  29.             echo '</center>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement