-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateUser.php
More file actions
72 lines (57 loc) · 1.5 KB
/
CreateUser.php
File metadata and controls
72 lines (57 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
session_start();
$inData = getRequestInfo();
$userName = $inData["UserName"];
$password = $inData["Password"];
$firstName = $inData["FirstName"];
$lastName = $inData["LastName"];
$id = 0;
$error = "";
$conn = new mysqli("198.71.225.55:3306", "User", "Password1!", "Contacts");
if ($conn->connect_error)
{
returnWithError( $conn->connect_error );
}
else
{
$sql = "SELECT * FROM ContactInfo WHERE UserName='$userName'";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0)
{
$error = "User Name already exists";
returnWithError($error);
}
$sql = "INSERT INTO `Login` (`UserName`, `Password`, `FirstName`, `LastName`) VALUES ('" . $userName . "','" . $password . "','" . $firstName . "','" . $lastName . "')";
if( $result = $conn->query($sql) != TRUE )
{
returnWithError( $conn->error );
}
$sql = "SELECT ID FROM Login where UserName='" . $userName . "' and Password='" . $password. "'";
$result = $conn->query($sql);
if ($result->num_rows > 0)
{
$row = $result->fetch_assoc();
$id = $row["ID"];
returnWithInfo( $id );
}
$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 )
{
sendResultInfoAsJson( json_encode($err) );
}
function returnWithInfo( $id )
{
$retValue = '{"id":' . $id . '}';
sendResultInfoAsJson( $retValue );
}
?>