forked from Nebilsolomon/Survey_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateUser.php
More file actions
166 lines (98 loc) · 2.79 KB
/
CreateUser.php
File metadata and controls
166 lines (98 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?php
$conn = mysqli_connect('localhost','root', '', 'Survey');
session_start();
if(!$conn) {
echo 'Connection error: ' . mysqli_connect_error();
}else {
//echo 'Successfully connected';
}
if (isset($_POST['Login'])) {
header('Location: login.php');
exit;
}
if (isset($_POST['SignUp'])){
$name = mysqli_real_escape_string($conn, $_POST["name"]);
$lastname = mysqli_real_escape_string($conn, $_POST["lastname"]);
$phone = mysqli_real_escape_string($conn, $_POST["phone"]);
$email = mysqli_real_escape_string($conn, $_POST["email"]);
$passworld = mysqli_real_escape_string($conn, $_POST["passworld"]);
$sql = "INSERT INTO users(FName,LName,Email,User_Password,Phone_number,user_ts) VALUES
('$name', '$lastname', '$email', '$passworld','$phone',current_timestamp);";
if(mysqli_query($conn,$sql)){
$_SESSION["User_Email"] = $email;
header("Location: DeleteSurvey.php");
exit();
}
else {
echo 'query error:'. mysqli_error($conn);
}
}
if (isset($_POST['Back'])) {
header('Location: index.php');
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<div class="header">
<h1>Magic Survey</h1>
<p>For all of your survey needs</p>
</div>
</head>
<body>
<form class="form" action = "CreateUser.php" method = "POST">
<h1>Create Account</h1>
<label>First Name </label>
<input type="text" name="name">
<label>Last Name</label>
<input type="text" name="lastname">
<label>Email</label>
<input type="text" name="email">
<label>Password</label>
<input type="text" name="passworld">
<label>PhoneNumber</label>
<input type="text" name="phone">
<div class="center">
<input type="submit" name="SignUp" value = "Sign Up">
<input type="submit" name="Login" value = "Login">
<!-- Testing a back button to return to index.php -->
<input type="submit" name="Back" value = "Back">
</script>
</div>
</form>
</body>
</html>
<!-- why pure php for some?
what is the link in header
what is the random survey on all survey page -->
<!-- <!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css" />
<div class="header">
<h1>Magic Survey</h1>
<p>For all of your survey needs</p>
</div>
</head>
<body>
<form class="form" action = "index.php" method = "POST">
<h1>New User</h1>
<label>First Name </label>
<input type="text" name="name">
<label>Last Name</label>
<input type="text" name="lastname">
<label>Email</label>
<input type="text" name="email">
<label>Password</label>
<input type="text" name="passworld">
<label>PhoneNumber</label>
<input type="text" name="phone">
<div class="center">
<input type="submit" name="submit" value = "Sign Up">
<input type="submit" name="Login" value = "Login">
</div>
</form>
</body>
</html> -->