-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.php
71 lines (62 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<HTML>
<head>
<?php include_once '../../includes/views/head.php'; ?>
</head>
<body>
<?php include_once 'includes/header.php'; ?>
<div class="row">
<div class="small-8 small-offset-2 columns">
<table class="small-12">
<thead>
<tr>
<th>
Word
</th>
<th>
Definition
</th>
</tr>
</thead>
<tbody>
<?php
require_once '../../includes/connect.php';
$word = $_POST['word'];
$definition = $_POST['definition'];
$sql = "SELECT word FROM words WHERE word = ? LIMIT 1";
$stmt = $db->prepare($sql);
$stmt->bindParam(1, $word);
$stmt->execute();
$data = $stmt->fetchAll(PDO::FETCH_ASSOC);
if($data[0])
{
// Word Exists
header("Location: index.php?error=1");
}
else
{
$sql = "INSERT INTO words (word, definition) VALUES (?, ?)";
$stmt = $db->prepare($sql);
$stmt->bindParam(1, $word);
$stmt->bindParam(2, $definition);
if($stmt->execute())
{
echo "
<tr>
<td>$word</td>
<td>$definition</td>
</tr>
";
}
else {
echo "Failed to insert!";
}
}
?>
</tbody>
</table>
<?php include_once 'includes/nav.php'; ?>
</div>
</div>
</body>
</HTML>