Created
January 26, 2019 22:13
-
-
Save eliagbenu/2cfc786bd9e71b2003c176758c90c2ce to your computer and use it in GitHub Desktop.
Update a single record
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 | |
$conn = mysqli_connect("localhost", "xxxx", "xxxx", "test"); | |
Header("Content-Tye: application/json; charset=UTF-8"); | |
if (mysqli_connect_errno()) { | |
echo json_encode(array("data"=>"Connection failed")); | |
exit(); | |
} | |
$first_name = $_POST['first_name']; | |
$last_name = $_POST['last_name']; | |
$gender = $_POST['gender']; | |
$id = $_POST['id']; | |
if ($result = mysqli_query($conn, "select * from people where id = $id ")) | |
{ | |
$row_cnt = mysqli_num_rows($result); | |
If($row_cnt== 1 ){ | |
if ( ( !empty($first_name) && !empty($last_name) && !empty($gender) ) ){ | |
$query = "update people set first_name= '$first_name', last_name='$last_name', gender= '$gender' where id = $id "; | |
$stmt = mysqli_prepare($conn, $query); | |
mysqli_stmt_execute($stmt); | |
$result = mysqli_query($conn, "select * from people where id = $id limit 1"); | |
$json_array = array(); | |
$assoc = mysqli_fetch_array($result); | |
array_push($json_array, | |
array( | |
"id"=>$assoc['id'], | |
"gender"=>$assoc['gender'], | |
"dob"=>$assoc['dob'], | |
"first_name"=>$assoc['first_name'], | |
"last_name"=>$assoc['last_name'] | |
) | |
); | |
echo json_encode($json_array); | |
}else{ | |
echo json_encode(array("data"=>"Some parameters are missing")); | |
} | |
}else{ | |
echo json_encode(array("data"=>"Nothing found")); | |
} | |
mysqli_free_result($result); | |
} | |
mysqli_close($conn); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment