Record deleted successfully
Here is the code for deleting the record from the database table.
<?php $servername = "localhost"; $username = "username"; $password = "password"; $dbname = "DBname"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } // sql to delete a record $sql = "DELETE FROM MyGuests WHERE id=3"; if ($conn->query($sql) === TRUE) { echo "Record deleted successfully"; } else { echo "Error deleting record: " . $conn->error; } $conn->close(); ?>
After the record is deleted, the table will look like this:
ID | Name | Registrarion Date | |
---|---|---|---|
1 | Don James | john@example.com | 2024-11-28 13:25:43 |
2 | Don Doe | john@example.com | 2024-11-28 14:34:54 |
4 | John Doe | john@deere.net | 2024-11-28 14:37:15 |
6 | Daisy Duck | daisyduck@example.com | 2024-11-28 13:41:22 |
7 | Julie Dooley | juliedooley@example.com | 2024-11-28 13:41:22 |
8 | Bob Marley | bobmarley@example.com | 2024-11-28 13:43:53 |
9 | Rita Marley | ritamarley@example.com | 2024-11-28 13:43:53 |
10 | Peter Tosh | petertosh@example.com | 2024-11-28 13:43:53 |
11 | Tom Cat | tc@example.com | 2024-11-28 13:49:32 |
12 | Woody Woodpecker | woody@example.com | 2024-11-28 13:49:32 |
13 | Mighty Mouse | mighty@example.com | 2024-11-28 13:49:32 |
14 | Bob Marley | bobmarley@example.com | 2024-12-05 06:36:51 |
15 | Rita Marley | ritamarley@example.com | 2024-12-05 06:36:51 |
16 | Peter Tosh | petertosh@example.com | 2024-12-05 06:36:51 |
17 | Tom Cat | tc@example.com | 2024-12-05 06:39:18 |
18 | Woody Woodpecker | woody@example.com | 2024-12-05 06:39:18 |
19 | Mighty Mouse | mighty@example.com | 2024-12-05 06:39:18 |
20 | John Deere | john@deere.net | 2024-12-05 06:39:22 |
21 | Don James | john@example.com | 2024-12-05 06:41:38 |
22 | Donald Duck | dduckn@example.com | 2024-12-05 06:46:06 |
23 | Daisy Duck | daisyduck@example.com | 2024-12-05 06:46:06 |
24 | Julie Dooley | juliedooley@example.com | 2024-12-05 06:46:06 |
25 | John Deer | johnd@example.com | 2024-12-05 06:57:02 |
26 | Don James | john@example.com | 2024-12-05 06:57:06 |
27 | John Deer | johnd@example.com | 2024-12-07 02:13:57 |
28 | John Deere | john@deere.net | 2024-12-07 11:26:18 |
29 | John Deer | johnd@example.com | 2024-12-07 14:43:35 |
30 | Don James | john@example.com | 2024-12-07 21:24:41 |
31 | Donald Duck | dduckn@example.com | 2024-12-07 21:37:50 |
32 | Daisy Duck | daisyduck@example.com | 2024-12-07 21:37:50 |
33 | Julie Dooley | juliedooley@example.com | 2024-12-07 21:37:50 |
34 | Tom Cat | tc@example.com | 2024-12-07 22:10:43 |
35 | Woody Woodpecker | woody@example.com | 2024-12-07 22:10:43 |
36 | Mighty Mouse | mighty@example.com | 2024-12-07 22:10:43 |
37 | Bob Marley | bobmarley@example.com | 2024-12-08 01:08:15 |
38 | Rita Marley | ritamarley@example.com | 2024-12-08 01:08:15 |
39 | Peter Tosh | petertosh@example.com | 2024-12-08 01:08:15 |
40 | Don James | john@example.com | 2024-12-08 03:46:03 |
41 | Don James | john@example.com | 2024-12-13 22:34:50 |
42 | John Deer | johnd@example.com | 2024-12-13 22:39:14 |
43 | John Deere | john@deere.net | 2024-12-13 22:40:02 |
44 | Don James | john@example.com | 2024-12-13 22:44:26 |
45 | Donald Duck | dduckn@example.com | 2024-12-13 22:44:51 |
46 | Daisy Duck | daisyduck@example.com | 2024-12-13 22:44:51 |
47 | Julie Dooley | juliedooley@example.com | 2024-12-13 22:44:51 |
48 | Tom Cat | tc@example.com | 2024-12-13 22:45:14 |
49 | Woody Woodpecker | woody@example.com | 2024-12-13 22:45:15 |
50 | Mighty Mouse | mighty@example.com | 2024-12-13 22:45:15 |
51 | Bob Marley | bobmarley@example.com | 2024-12-13 22:45:38 |
52 | Rita Marley | ritamarley@example.com | 2024-12-13 22:45:38 |
53 | Peter Tosh | petertosh@example.com | 2024-12-13 22:45:39 |
54 | John Deer | johnd@example.com | 2024-12-22 19:07:33 |
55 | John Deere | john@deere.net | 2024-12-22 19:07:42 |
56 | Don James | john@example.com | 2024-12-22 19:08:12 |
57 | Don James | john@example.com | 2024-12-22 19:08:19 |
58 | Tom Cat | tc@example.com | 2024-12-22 19:17:05 |
59 | Woody Woodpecker | woody@example.com | 2024-12-22 19:17:05 |
60 | Mighty Mouse | mighty@example.com | 2024-12-22 19:17:05 |
61 | Donald Duck | dduckn@example.com | 2024-12-22 19:21:09 |
62 | Daisy Duck | daisyduck@example.com | 2024-12-22 19:21:09 |
63 | Julie Dooley | juliedooley@example.com | 2024-12-22 19:21:09 |
64 | Bob Marley | bobmarley@example.com | 2024-12-22 19:21:17 |
65 | Rita Marley | ritamarley@example.com | 2024-12-22 19:21:17 |
66 | Peter Tosh | petertosh@example.com | 2024-12-22 19:21:17 |
67 | John Deer | johnd@example.com | 2024-12-28 11:12:45 |
68 | John Deere | john@deere.net | 2024-12-30 11:12:45 |
69 | Bob Marley | bobmarley@example.com | 2024-12-30 15:50:59 |
70 | Rita Marley | ritamarley@example.com | 2024-12-30 15:50:59 |
71 | Peter Tosh | petertosh@example.com | 2024-12-30 15:50:59 |
72 | Donald Duck | dduckn@example.com | 2024-12-30 17:12:49 |
73 | Daisy Duck | daisyduck@example.com | 2024-12-30 17:12:49 |
74 | Julie Dooley | juliedooley@example.com | 2024-12-30 17:12:49 |
75 | John Deere | john@deere.net | 2024-12-30 19:31:58 |
76 | Tom Cat | tc@example.com | 2024-12-30 20:23:19 |
77 | Woody Woodpecker | woody@example.com | 2024-12-30 20:23:19 |
78 | Mighty Mouse | mighty@example.com | 2024-12-30 20:23:19 |
79 | Don James | john@example.com | 2024-12-30 20:26:27 |
80 | Bob Marley | bobmarley@example.com | 2024-12-30 20:27:19 |
81 | Rita Marley | ritamarley@example.com | 2024-12-30 20:27:19 |
82 | Peter Tosh | petertosh@example.com | 2024-12-30 20:27:19 |
83 | John Deer | johnd@example.com | 2024-12-30 20:43:27 |
84 | Don James | john@example.com | 2024-12-30 20:54:12 |
85 | John Deer | johnd@example.com | 2025-01-03 21:31:26 |
86 | John Deere | john@deere.net | 2025-01-03 21:37:56 |
87 | Don James | john@example.com | 2025-01-03 21:39:54 |
88 | Don James | john@example.com | 2025-01-03 21:42:32 |
89 | Tom Cat | tc@example.com | 2025-01-03 21:43:14 |
90 | Woody Woodpecker | woody@example.com | 2025-01-03 21:43:14 |
91 | Mighty Mouse | mighty@example.com | 2025-01-03 21:43:14 |
92 | Donald Duck | dduckn@example.com | 2025-01-03 21:52:13 |
93 | Daisy Duck | daisyduck@example.com | 2025-01-03 21:52:13 |
94 | Julie Dooley | juliedooley@example.com | 2025-01-03 21:52:13 |
95 | Bob Marley | bobmarley@example.com | 2025-01-03 21:53:41 |
96 | Rita Marley | ritamarley@example.com | 2025-01-03 21:53:41 |
97 | Peter Tosh | petertosh@example.com | 2025-01-03 21:53:41 |
98 | Tom Cat | tc@example.com | 2025-01-03 23:03:10 |
99 | Woody Woodpecker | woody@example.com | 2025-01-03 23:03:10 |
100 | Mighty Mouse | mighty@example.com | 2025-01-03 23:03:10 |
101 | Don James | john@example.com | 2025-01-03 23:15:10 |
102 | Bob Marley | bobmarley@example.com | 2025-01-03 23:16:59 |
103 | Rita Marley | ritamarley@example.com | 2025-01-03 23:16:59 |
104 | Peter Tosh | petertosh@example.com | 2025-01-03 23:16:59 |
105 | John Deer | johnd@example.com | 2025-01-03 23:28:09 |
106 | John Deere | john@deere.net | 2025-01-03 23:44:09 |
107 | Don James | john@example.com | 2025-01-03 23:45:27 |
108 | Donald Duck | dduckn@example.com | 2025-01-03 23:47:21 |
109 | Daisy Duck | daisyduck@example.com | 2025-01-03 23:47:21 |
110 | Julie Dooley | juliedooley@example.com | 2025-01-03 23:47:21 |
111 | Bob Marley | bobmarley@example.com | 2025-01-04 14:55:02 |
112 | Rita Marley | ritamarley@example.com | 2025-01-04 14:55:02 |
113 | Peter Tosh | petertosh@example.com | 2025-01-04 14:55:02 |
114 | Tom Cat | tc@example.com | 2025-01-04 14:57:32 |
115 | Woody Woodpecker | woody@example.com | 2025-01-04 14:57:32 |
116 | Mighty Mouse | mighty@example.com | 2025-01-04 14:57:32 |
117 | John Deere | john@deere.net | 2025-01-04 14:57:34 |
118 | Don James | john@example.com | 2025-01-04 14:59:50 |
119 | Donald Duck | dduckn@example.com | 2025-01-04 15:04:18 |
120 | Daisy Duck | daisyduck@example.com | 2025-01-04 15:04:18 |
121 | Julie Dooley | juliedooley@example.com | 2025-01-04 15:04:18 |
122 | John Deer | johnd@example.com | 2025-01-04 15:15:14 |
123 | Don James | john@example.com | 2025-01-04 15:15:18 |
124 | Bob Marley | bobmarley@example.com | 2025-01-04 23:35:42 |
125 | Rita Marley | ritamarley@example.com | 2025-01-04 23:35:42 |
126 | Peter Tosh | petertosh@example.com | 2025-01-04 23:35:42 |
127 | Don James | john@example.com | 2025-01-04 23:45:51 |
128 | Donald Duck | dduckn@example.com | 2025-01-04 23:50:22 |
129 | Daisy Duck | daisyduck@example.com | 2025-01-04 23:50:22 |
130 | Julie Dooley | juliedooley@example.com | 2025-01-04 23:50:22 |
131 | Don James | john@example.com | 2025-01-04 23:53:02 |
132 | John Deere | john@deere.net | 2025-01-04 23:53:09 |
133 | Tom Cat | tc@example.com | 2025-01-04 23:53:19 |
134 | Woody Woodpecker | woody@example.com | 2025-01-04 23:53:19 |
135 | Mighty Mouse | mighty@example.com | 2025-01-04 23:53:19 |
136 | John Deer | johnd@example.com | 2025-01-07 12:53:10 |
137 | Don James | john@example.com | 2025-01-07 13:08:59 |
138 | Bob Marley | bobmarley@example.com | 2025-01-07 13:34:10 |
139 | Rita Marley | ritamarley@example.com | 2025-01-07 13:34:10 |
140 | Peter Tosh | petertosh@example.com | 2025-01-07 13:34:10 |
141 | John Deere | john@deere.net | 2025-01-07 13:42:48 |
142 | Tom Cat | tc@example.com | 2025-01-07 14:13:15 |
143 | Woody Woodpecker | woody@example.com | 2025-01-07 14:13:15 |
144 | Mighty Mouse | mighty@example.com | 2025-01-07 14:13:15 |
145 | Donald Duck | dduckn@example.com | 2025-01-07 14:21:01 |
146 | Daisy Duck | daisyduck@example.com | 2025-01-07 14:21:01 |
147 | Julie Dooley | juliedooley@example.com | 2025-01-07 14:21:01 |
148 | Don James | john@example.com | 2025-01-07 14:22:09 |
149 | Don James | john@example.com | 2025-01-09 15:10:06 |
150 | Bob Marley | bobmarley@example.com | 2025-01-09 15:10:24 |
151 | Rita Marley | ritamarley@example.com | 2025-01-09 15:10:24 |
152 | Peter Tosh | petertosh@example.com | 2025-01-09 15:10:24 |
153 | John Deer | johnd@example.com | 2025-01-09 15:21:11 |
154 | John Deere | john@deere.net | 2025-01-09 15:23:48 |
155 | Tom Cat | tc@example.com | 2025-01-10 07:29:25 |
156 | Woody Woodpecker | woody@example.com | 2025-01-10 07:29:25 |
157 | Mighty Mouse | mighty@example.com | 2025-01-10 07:29:25 |
158 | Donald Duck | dduckn@example.com | 2025-01-10 07:43:14 |
159 | Daisy Duck | daisyduck@example.com | 2025-01-10 07:43:14 |
160 | Julie Dooley | juliedooley@example.com | 2025-01-10 07:43:14 |
161 | Don James | john@example.com | 2025-01-10 08:09:24 |
162 | John Deer | johnd@example.com | 2025-01-12 01:38:22 |
163 | John Deere | john@deere.net | 2025-01-12 01:39:24 |
164 | Don James | john@example.com | 2025-01-12 01:49:26 |
165 | Bob Marley | bobmarley@example.com | 2025-01-12 01:50:10 |
166 | Rita Marley | ritamarley@example.com | 2025-01-12 01:50:10 |
167 | Peter Tosh | petertosh@example.com | 2025-01-12 01:50:10 |
168 | Tom Cat | tc@example.com | 2025-01-12 11:23:59 |
169 | Woody Woodpecker | woody@example.com | 2025-01-12 11:23:59 |
170 | Mighty Mouse | mighty@example.com | 2025-01-12 11:23:59 |
171 | Don James | john@example.com | 2025-01-12 11:28:26 |
172 | Donald Duck | dduckn@example.com | 2025-01-12 11:45:57 |
173 | Daisy Duck | daisyduck@example.com | 2025-01-12 11:45:57 |
174 | Julie Dooley | juliedooley@example.com | 2025-01-12 11:45:57 |
175 | Tom Cat | tc@example.com | 2025-01-15 14:30:12 |
176 | Woody Woodpecker | woody@example.com | 2025-01-15 14:30:12 |
177 | Mighty Mouse | mighty@example.com | 2025-01-15 14:30:12 |
178 | John Deer | johnd@example.com | 2025-01-15 14:36:01 |
179 | John Deere | john@deere.net | 2025-01-15 14:37:21 |
180 | Donald Duck | dduckn@example.com | 2025-01-15 14:42:22 |
181 | Daisy Duck | daisyduck@example.com | 2025-01-15 14:42:22 |
182 | Julie Dooley | juliedooley@example.com | 2025-01-15 14:42:22 |
183 | Don James | john@example.com | 2025-01-15 17:46:24 |
184 | Bob Marley | bobmarley@example.com | 2025-01-15 17:47:23 |
185 | Rita Marley | ritamarley@example.com | 2025-01-15 17:47:23 |
186 | Peter Tosh | petertosh@example.com | 2025-01-15 17:47:23 |
187 | Don James | john@example.com | 2025-01-15 18:11:17 |
188 | Donald Duck | dduckn@example.com | 2025-01-18 04:58:55 |
189 | Daisy Duck | daisyduck@example.com | 2025-01-18 04:58:55 |
190 | Julie Dooley | juliedooley@example.com | 2025-01-18 04:58:55 |
191 | Don James | john@example.com | 2025-01-18 05:00:56 |
192 | Tom Cat | tc@example.com | 2025-01-18 05:04:39 |
193 | Woody Woodpecker | woody@example.com | 2025-01-18 05:04:39 |
194 | Mighty Mouse | mighty@example.com | 2025-01-18 05:04:39 |
195 | John Deere | john@deere.net | 2025-01-18 05:09:13 |
196 | Bob Marley | bobmarley@example.com | 2025-01-18 05:10:09 |
197 | Rita Marley | ritamarley@example.com | 2025-01-18 05:10:09 |
198 | Peter Tosh | petertosh@example.com | 2025-01-18 05:10:09 |
199 | Don James | john@example.com | 2025-01-18 05:13:07 |
200 | John Deer | johnd@example.com | 2025-01-18 05:14:39 |
Here is the code for accessing the database and display the information in a table.
<?php $servername = "localhost"; $username = "username"; $password = "password"; $dbname = "DBname"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } $sql = "SELECT id, firstname, lastname, email FROM MyGuests"; $result = $conn->query($sql); if ($result->num_rows > 0) { echo "<table><tr><th>ID</th><th>Name</th><th>Email</th><Registration Date</th></tr>"; // output data of each row while($row = $result->fetch_assoc()) { echo "<tr style='background-color:yellow';> <td>".$row["id"]."</td><td>".$row["firstname"]." ".$row["lastname"]."</td>".$row["email"]."</td><td>".$row["reg_date"]."</td></tr>"; } echo "</table>"; } else { echo "<p>0 results</p>"; } $conn->close(); ?>