-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert.php
58 lines (51 loc) · 1.48 KB
/
insert.php
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
<?php
$data = $_POST;
// validate required fields
$errors = [];
foreach (['email', 'firstname', 'lastname', 'password'] as $field) {
if (empty($data[$field])) {
$errors[] = sprintf('The %s is a required field.', $field);
}
}
if (!empty($errors)) {
echo implode('<br />', $errors);
exit;
}
//validate email
$email = $data['email'];
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
echo 'Invalid email format';
}
//database connect
$host = 'localhost';
$database = 'php_insert';
$user = 'root';
$pass = '';
$dsn = sprintf("mysql:host=%s;dbname=%s;", $host, $database);
$options = [
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
];
try {
$pdo = new PDO($dsn, $user, $pass, $options);
} catch (\PDOException $e) {
throw new \PDOException($e->getMessage(), (int)$e->getCode());
}
// check email
$statement = $pdo->prepare('SELECT * FROM user WHERE email = :email');
$statement->execute(['email' => $data['email']]);
if (!empty($statement->fetch())) {
echo 'User with such email exists.';
exit;
}
//insert new user
$statement = $pdo->prepare(
'INSERT INTO user (email, firstname, lastname, password) VALUES (:email, :firstname, :lastname, :password)'
);
$statement->execute([
'email' => $data['email'],
'firstname' => $data['firstname'],
'lastname' => $data['lastname'],
'password' => password_hash($data['password'], PASSWORD_BCRYPT)
]);
echo 'The user has been successfully saved.';