Advertisement
fadhoil

Halaman Controller

Dec 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. //////////////////////////////////// Halaman Controller ///////////////////////////////////////////////
  2. public function verifymahasiswa()
  3.     {
  4.       $userName =  $_POST['nim'];
  5.       $userPassword =  $_POST['password'];
  6.       $status = array("NAMA"=>"false");
  7.       if($userName=='Jenisa' && $userPassword=='masuk'){
  8.        $status = array("NAMA"=>"Jenisa");
  9.       }
  10.       echo json_encode ($status) ;
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement