Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. include_once("m_programKerja.php");
  3. class c_programKerja {
  4. public $model;
  5.  
  6. /* yang salah
  7. public function __construct($nama){
  8. $this->model = new m_programKerja();
  9. }
  10. */
  11.  
  12. // yang benar
  13. public function __construct(){
  14. $this->model = new m_programKerja(1, "Say HI!", "Belum Eksekusi");
  15. }
  16.  
  17. public function invoke(){
  18. $proker = $this->model->getSemuaPogramKerja();
  19. include 'v_programKerja.php';
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement