Advertisement
Guest User

FIle_1_Karyawan.php

a guest
Oct 25th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. class Karyawan
  3. {
  4. public $nama;
  5. public $alamat;
  6. public $gapok;
  7.  
  8. public function __construct(){} //inisialisasi
  9.  
  10.   public function setNama($nm)
  11.   {
  12.       $this->nama=$nm;
  13.   }
  14.    public function getNama()
  15.    {
  16.      return $this->nama;
  17.    }
  18.   public function setAlamat($alm)
  19.   {
  20.       $this->alamat=$alm;
  21.   }
  22.    public function getAlamat()
  23.    {
  24.      return $this->alamat;
  25.    }
  26. }
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement