Created
May 18, 2023 04:35
-
-
Save misskecupbung/4de7d25a1d932aecb4a55440eda4b1e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once "koneksi.php"; | |
class Mahasiswa | |
{ | |
public function get_mhss() | |
{ | |
global $mysqli; | |
$query="SELECT * FROM tbl_mahasiswa"; | |
$data=array(); | |
$result=$mysqli->query($query); | |
while($row=mysqli_fetch_object($result)) | |
{ | |
$data[]=$row; | |
} | |
$response=array( | |
'status' => 1, | |
'message' =>'Get List Mahasiswa Successfully.', | |
'data' => $data | |
); | |
header('Content-Type: application/json'); | |
echo json_encode($response); | |
} | |
public function get_mhs($id=0) | |
{ | |
global $mysqli; | |
$query="SELECT * FROM tbl_mahasiswa"; | |
if($id != 0) | |
{ | |
$query.=" WHERE id=".$id." LIMIT 1"; | |
} | |
$data=array(); | |
$result=$mysqli->query($query); | |
while($row=mysqli_fetch_object($result)) | |
{ | |
$data[]=$row; | |
} | |
$response=array( | |
'status' => 1, | |
'message' =>'Get Mahasiswa Successfully.', | |
'data' => $data | |
); | |
header('Content-Type: application/json'); | |
echo json_encode($response); | |
} | |
public function insert_mhs() | |
{ | |
global $mysqli; | |
$arrcheckpost = array('nim' => '', 'nama' => '', 'jk' => '', 'alamat' => '', 'jurusan' => ''); | |
$hitung = count(array_intersect_key($_POST, $arrcheckpost)); | |
if($hitung == count($arrcheckpost)){ | |
$result = mysqli_query($mysqli, "INSERT INTO tbl_mahasiswa SET | |
nim = '$_POST[nim]', | |
nama = '$_POST[nama]', | |
jk = '$_POST[jk]', | |
alamat = '$_POST[alamat]', | |
jurusan = '$_POST[jurusan]'"); | |
if($result) | |
{ | |
$response=array( | |
'status' => 1, | |
'message' =>'Mahasiswa Added Successfully.' | |
); | |
} | |
else | |
{ | |
$response=array( | |
'status' => 0, | |
'message' =>'Mahasiswa Addition Failed.' | |
); | |
} | |
}else{ | |
$response=array( | |
'status' => 0, | |
'message' =>'Parameter Do Not Match' | |
); | |
} | |
header('Content-Type: application/json'); | |
echo json_encode($response); | |
} | |
function update_mhs($id) | |
{ | |
global $mysqli; | |
$arrcheckpost = array('nim' => '', 'nama' => '', 'jk' => '', 'alamat' => '', 'jurusan' => ''); | |
$hitung = count(array_intersect_key($_POST, $arrcheckpost)); | |
if($hitung == count($arrcheckpost)){ | |
$result = mysqli_query($mysqli, "UPDATE tbl_mahasiswa SET | |
nim = '$_POST[nim]', | |
nama = '$_POST[nama]', | |
jk = '$_POST[jk]', | |
alamat = '$_POST[alamat]', | |
jurusan = '$_POST[jurusan]' | |
WHERE id='$id'"); | |
if($result) | |
{ | |
$response=array( | |
'status' => 1, | |
'message' =>'Mahasiswa Updated Successfully.' | |
); | |
} | |
else | |
{ | |
$response=array( | |
'status' => 0, | |
'message' =>'Mahasiswa Updation Failed.' | |
); | |
} | |
}else{ | |
$response=array( | |
'status' => 0, | |
'message' =>'Parameter Do Not Match' | |
); | |
} | |
header('Content-Type: application/json'); | |
echo json_encode($response); | |
} | |
function delete_mhs($id) | |
{ | |
global $mysqli; | |
$query="DELETE FROM tbl_mahasiswa WHERE id=".$id; | |
if(mysqli_query($mysqli, $query)) | |
{ | |
$response=array( | |
'status' => 1, | |
'message' =>'Mahasiswa Deleted Successfully.' | |
); | |
} | |
else | |
{ | |
$response=array( | |
'status' => 0, | |
'message' =>'Mahasiswa Deletion Failed.' | |
); | |
} | |
header('Content-Type: application/json'); | |
echo json_encode($response); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment