-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateContact.php
More file actions
47 lines (40 loc) · 1.17 KB
/
UpdateContact.php
File metadata and controls
47 lines (40 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
session_start();
$inData = getRequestInfo();
$contactID = $inData["Contact_ID"];
$firstName = $inData["FirstName"];
$lastName = $inData["LastName"];
$phoneNumber = $inData["PhoneNumber"];
$email = $inData["Email"];
$address = $inData["Address"];
$userID = $inData["User_ID"];
$conn = new mysqli("198.71.225.55:3306", "User", "Password1!", "Contacts");
if ($conn->connect_error)
{
returnWithError( $conn->connect_error );
}
else
{
//$userID = $_SESSION["User_ID"];
$sql = "UPDATE ContactInfo SET FirstName='" . $firstName . "', LastName='" . $lastName . "', PhoneNumber='" . $phoneNumber . "', Email='" . $email . "', Address='" . $address . "' WHERE Contact_ID='" . $contactID . "'";
if( $result = $conn->query($sql) != TRUE )
{
returnWithError( $conn->error );
}
$conn->close();
}
function getRequestInfo()
{
return json_decode(file_get_contents('php://input'), true);
}
function sendResultInfoAsJson( $obj )
{
header('Content-type: application/json');
echo $obj;
}
function returnWithError( $err )
{
$retValue = '{"error":"' . $err . '"}';
sendResultInfoAsJson( $retValue );
}
?>