• 使用 PHP、PDO 和 MySQL 的 CRUD 应用程序


    CRUD Application with PHP, PDO, and MySQL

    在本教程中,我们将使用 PHP、PDO 和 MySQL 创建一个完整的创建、读取、更新和删除应用程序。我们将完全从头开始创建应用程序,不需要额外的框架。

    CRUD 应用程序通常与数据库结合使用,与表中的记录进行交互。我们将在我们的应用程序中使用 MySQL 作为我们的数据库管理系统。

    我们将创建一个包含联系人表的数据库,我们将能够在我们的 CRUD 应用程序中操作这些联系人,联系人表将包含姓名、电子邮件、电话号码等。

    Basic 和 Advanced 包包括附加功能和源代码的下载链接。

    1. 入门

    在开始编写 CRUD 应用程序之前,我们需要安装我们的 Web 服务器并设置我们的应用程序。

    1.1。您将在本教程中学到什么

    • 创建 MySQL 记录— 将新记录插入联系人表。
    • 读取 MySQL 记录— 读取 MySQL 记录并将它们显示在 HTML 表中。
    • 更新 MySQL 记录— 更新联系人表中的现有 MySQL 记录。
    • 删除 MySQL 记录— 确认并从联系人表中删除记录。
    • GET 和 POST 请求——从 HTML 表单和 URL 参数向我们的应用程序发送数据。
    • 准备好的语句——使用准备好的语句保护我们的 SQL 语句。

    1.2. 要求

    • Web 服务器— 我建议您在本地计算机系统上下载并安装XAMPP,此服务器包包括 MySQL、PHP、phpMyAdmin 和 PDO 扩展。
    • PHP — 我建议您使用最新版本的PHP,但旧版本应该可以正常工作(如果您安装了XAMPP ,请跳过)。
    • PDO 扩展——如果你使用XAMPP,应该默认启用,但如果不是,你需要启用/安装它。

    1.3. 文件结构和设置

    导航到C:\xampp\htdocs ( XAMPP ) 并创建以下目录和文件。

    文件结构

    \-- phpcrud
        |-- index.php
        |-- create.php
        |-- read.php
        |-- update.php
        |-- delete.php
        |-- functions.php
        |-- style.css

    每个文件将包含什么:

    • index.php — 我们的 CRUD 应用程序的主页。
    • create.php — 使用 HTML 表单创建新记录并使用 POST 请求将数据发送到服务器。
    • read.php — 显示我们数据库表中的记录并使用分页导航。
    • update.php — 使用 HTML 表单更新现有记录,并使用 POST 请求将数据发送到服务器。
    • delete.php — 按 ID 确认和删除记录(获取 ID 的 GET 请求)。
    • functions.php — 基本模板函数和 MySQL 连接函数(因此我们不必在每个文件中重复代码)。
    • style.css——我们应用的样式表,这将改变我们应用的外观。

    2. 创建数据库和设置表

    我们将使用 MySQL 数据库来存储联系人并使用 PHP 检索它们。如果您使用 XAMPP,请按照以下说明进行操作。

    • 导航到http://localhost/phpmyadmin/
    • 单击顶部的数据库
    • Create database下输入phpcrud并选择utf8_general_ci作为排序规则
    • 单击创建
    • 选择新创建的数据库
    • 单击SQL选项卡并执行以下 SQL:
    1. CREATE TABLE IF NOT EXISTS `contacts` (
    2. `id` int(11) NOT NULL AUTO_INCREMENT,
    3. `name` varchar(255) NOT NULL,
    4. `email` varchar(255) NOT NULL,
    5. `phone` varchar(255) NOT NULL,
    6. `title` varchar(255) NOT NULL,
    7. `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
    8. PRIMARY KEY (`id`)
    9. ) ;
    10. INSERT INTO `contacts` (`id`, `name`, `email`, `phone`, `title`, `created`) VALUES
    11. (1, 'John Doe', 'johndoe@example.com', '2026550143', 'Lawyer', '2019-05-08 17:32:00'),
    12. (2, 'David Deacon', 'daviddeacon@example.com', '2025550121', 'Employee', '2019-05-08 17:28:44'),
    13. (3, 'Sam White', 'samwhite@example.com', '2004550121', 'Employee', '2019-05-08 17:29:27'),
    14. (4, 'Colin Chaplin', 'colinchaplin@example.com', '2022550178', 'Supervisor', '2019-05-08 17:29:27'),
    15. (5, 'Ricky Waltz', 'rickywaltz@example.com', '7862342390', '', '2019-05-09 19:16:00'),
    16. (6, 'Arnold Hall', 'arnoldhall@example.com', '5089573579', 'Manager', '2019-05-09 19:17:00'),
    17. (7, 'Toni Adams', 'alvah1981@example.com', '2603668738', '', '2019-05-09 19:19:00'),
    18. (8, 'Donald Perry', 'donald1983@example.com', '7019007916', 'Employee', '2019-05-09 19:20:00'),
    19. (9, 'Joe McKinney', 'nadia.doole0@example.com', '6153353674', 'Employee', '2019-05-09 19:20:00'),
    20. (10, 'Angela Horst', 'angela1977@example.com', '3094234980', 'Assistant', '2019-05-09 19:21:00'),
    21. (11, 'James Jameson', 'james1965@example.com', '4002349823', 'Assistant', '2019-05-09 19:32:00'),
    22. (12, 'Daniel Deacon', 'danieldeacon@example.com', '5003423549', 'Manager', '2019-05-09 19:33:00');

    上面的 SQL 将创建表:contacts,我们将在我们的应用程序中使用此表,包含在 SQL 中的是示例数据,此数据将用于测试目的,以确保一切正常,您可以删除稍后再说。

    在contacts表中有6列(id、name、email、phone、title、created),title列基本上就是每个联系人的角色,你可以把这个改成你想要的任何东西,示例数据将使用工作角色举个例子。

    phpMyAdmin中,数据库应如下所示:

    3. 创建样式表 (CSS3)

    样式表将改变我们应用程序的外观,编辑style.css文件并添加以下代码:

    1. * {
    2. box-sizing: border-box;
    3. font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
    4. font-size: 16px;
    5. -webkit-font-smoothing: antialiased;
    6. -moz-osx-font-smoothing: grayscale;
    7. }
    8. body {
    9. background-color: #FFFFFF;
    10. margin: 0;
    11. }
    12. .navtop {
    13. background-color: #3f69a8;
    14. height: 60px;
    15. width: 100%;
    16. border: 0;
    17. }
    18. .navtop div {
    19. display: flex;
    20. margin: 0 auto;
    21. width: 1000px;
    22. height: 100%;
    23. }
    24. .navtop div h1, .navtop div a {
    25. display: inline-flex;
    26. align-items: center;
    27. }
    28. .navtop div h1 {
    29. flex: 1;
    30. font-size: 24px;
    31. padding: 0;
    32. margin: 0;
    33. color: #ecf0f6;
    34. font-weight: normal;
    35. }
    36. .navtop div a {
    37. padding: 0 20px;
    38. text-decoration: none;
    39. color: #c5d2e5;
    40. font-weight: bold;
    41. }
    42. .navtop div a i {
    43. padding: 2px 8px 0 0;
    44. }
    45. .navtop div a:hover {
    46. color: #ecf0f6;
    47. }
    48. .content {
    49. width: 1000px;
    50. margin: 0 auto;
    51. }
    52. .content h2 {
    53. margin: 0;
    54. padding: 25px 0;
    55. font-size: 22px;
    56. border-bottom: 1px solid #ebebeb;
    57. color: #666666;
    58. }
    59. .read .create-contact {
    60. display: inline-block;
    61. text-decoration: none;
    62. background-color: #38b673;
    63. font-weight: bold;
    64. font-size: 14px;
    65. color: #FFFFFF;
    66. padding: 10px 15px;
    67. margin: 15px 0;
    68. }
    69. .read .create-contact:hover {
    70. background-color: #32a367;
    71. }
    72. .read .pagination {
    73. display: flex;
    74. justify-content: flex-end;
    75. }
    76. .read .pagination a {
    77. display: inline-block;
    78. text-decoration: none;
    79. background-color: #a5a7a9;
    80. font-weight: bold;
    81. color: #FFFFFF;
    82. padding: 5px 10px;
    83. margin: 15px 0 15px 5px;
    84. }
    85. .read .pagination a:hover {
    86. background-color: #999b9d;
    87. }
    88. .read table {
    89. width: 100%;
    90. padding-top: 30px;
    91. border-collapse: collapse;
    92. }
    93. .read table thead {
    94. background-color: #ebeef1;
    95. border-bottom: 1px solid #d3dae0;
    96. }
    97. .read table thead td {
    98. padding: 10px;
    99. font-weight: bold;
    100. color: #767779;
    101. font-size: 14px;
    102. }
    103. .read table tbody tr {
    104. border-bottom: 1px solid #d3dae0;
    105. }
    106. .read table tbody tr:nth-child(even) {
    107. background-color: #fbfcfc;
    108. }
    109. .read table tbody tr:hover {
    110. background-color: #376ab7;
    111. }
    112. .read table tbody tr:hover td {
    113. color: #FFFFFF;
    114. }
    115. .read table tbody tr:hover td:nth-child(1) {
    116. color: #FFFFFF;
    117. }
    118. .read table tbody tr td {
    119. padding: 10px;
    120. }
    121. .read table tbody tr td:nth-child(1) {
    122. color: #a5a7a9;
    123. }
    124. .read table tbody tr td.actions {
    125. padding: 8px;
    126. text-align: right;
    127. }
    128. .read table tbody tr td.actions .edit, .read table tbody tr td.actions .trash {
    129. display: inline-flex;
    130. text-align: right;
    131. text-decoration: none;
    132. color: #FFFFFF;
    133. padding: 10px 12px;
    134. }
    135. .read table tbody tr td.actions .trash {
    136. background-color: #b73737;
    137. }
    138. .read table tbody tr td.actions .trash:hover {
    139. background-color: #a33131;
    140. }
    141. .read table tbody tr td.actions .edit {
    142. background-color: #37afb7;
    143. }
    144. .read table tbody tr td.actions .edit:hover {
    145. background-color: #319ca3;
    146. }
    147. .update form {
    148. padding: 15px 0;
    149. display: flex;
    150. flex-flow: wrap;
    151. }
    152. .update form label {
    153. display: inline-flex;
    154. width: 400px;
    155. padding: 10px 0;
    156. margin-right: 25px;
    157. }
    158. .update form input {
    159. padding: 10px;
    160. width: 400px;
    161. margin-right: 25px;
    162. margin-bottom: 15px;
    163. border: 1px solid #cccccc;
    164. }
    165. .update form input[type="submit"] {
    166. display: block;
    167. background-color: #38b673;
    168. border: 0;
    169. font-weight: bold;
    170. font-size: 14px;
    171. color: #FFFFFF;
    172. cursor: pointer;
    173. width: 200px;
    174. margin-top: 15px;
    175. }
    176. .update form input[type="submit"]:hover {
    177. background-color: #32a367;
    178. }
    179. .delete .yesno {
    180. display: flex;
    181. }
    182. .delete .yesno a {
    183. display: inline-block;
    184. text-decoration: none;
    185. background-color: #38b673;
    186. font-weight: bold;
    187. color: #FFFFFF;
    188. padding: 10px 15px;
    189. margin: 15px 10px 15px 0;
    190. }
    191. .delete .yesno a:hover {
    192. background-color: #32a367;
    193. }

    随意更改样式,这是我为使 CRUD 应用程序更具吸引力而汇总的内容。

    4. 创建 CRUD 应用程序

    我们终于可以开始使用 PHP 编写 CRUD 应用程序了。在我们开始之前,请确保您按照前面的步骤操作并准备好 MySQL 数据库。

    4.1。创建函数

    该文件将包含我们可以在所有 PHP 文件中执行的函数,这样我们就不必在每个 PHP 文件中编写相同的代码,代码越短越好,对吧?我们将创建 3 个函数,1 个函数将连接到数据库,另外 2 个函数将是页眉和页脚的模板,它们将出现在我们创建的每个页面上,并将包含 HTML 布局。

    编辑functions.php文件并添加以下代码:

    1. function pdo_connect_mysql() {
    2. $DATABASE_HOST = 'localhost';
    3. $DATABASE_USER = 'root';
    4. $DATABASE_PASS = '';
    5. $DATABASE_NAME = 'phpcrud';
    6. try {
    7. return new PDO('mysql:host=' . $DATABASE_HOST . ';dbname=' . $DATABASE_NAME . ';charset=utf8', $DATABASE_USER, $DATABASE_PASS);
    8. } catch (PDOException $exception) {
    9. // If there is an error with the connection, stop the script and display the error.
    10. exit('Failed to connect to database!');
    11. }
    12. }
    13. function template_header($title) {
    14. echo <<
    15. <span class="hljs-subst">$title</span>
    16. Website Title

  • EOT;
  • }
  • function template_footer() {
  • echo <<
  • EOT;
  • }
  • ?>
  • 确保将 MySQL 连接详细信息更改为您的详细信息,我们使用 PDO 连接到 MySQL,PDO 将使我们更容易与我们的 MySQL 数据库交互。

    4.2. 创建主页

    当您导航到http://localhost/phpcrud/时,它将提供index.php文件,该页面将是我们的主页。

    编辑index.php文件并添加以下代码:

    1. include 'functions.php';
    2. // Your PHP code here.
    3. // Home Page template below.
    4. ?>
    5. template_header('Home')?>
    6. class="content">
    7. <h2>Homeh2>
    8. <p>Welcome to the home page!p>
    9. div>
    10. template_footer()?>

    这将创建一个基本主页,我们可以使用此页面导航到其他页面。如您所见,我们包含了functions.php文件并执行了我们创建的模板函数,请记住这些函数会将页眉和页脚代码添加到我们的主页。

    现在,如果我们导航到http://localhost/phpcrud/,我们将看到以下内容:

    http://localhost/phpcrud/index.php

    主页基本上就是这样,您可以随意添加自己的内容,这个页面只是为了让我们可以导航到其他页面。

    4.3. 创建阅读页面

    此页面将从我们的联系人表中填充 HTML 表中的记录。

    编辑read.php文件并添加以下代码:

    1. include 'functions.php';
    2. // Connect to MySQL database
    3. $pdo = pdo_connect_mysql();
    4. // Get the page via GET request (URL param: page), if non exists default the page to 1
    5. $page = isset($_GET['page']) && is_numeric($_GET['page']) ? (int)$_GET['page'] : 1;
    6. // Number of records to show on each page
    7. $records_per_page = 5;

    我们再次包含函数文件,但这次我们通过执行函数连接到我们的 MySQL 数据库:pdo_connect_mysql,如果连接成功我们可以使用$pdo执行查询的变量。

    我们还创建了另外 2 个变量,即$页变量将确定用户当前所在的页面,$records_per_page将用于限制每页显示的记录数,例如,如果我们将记录数限制为 5 并且我们的联系人表中有 10 条记录,那么将只有 2 页和每页上的 5 条记录,用户将能够在页面之间导航。

    将以下代码添加到read.php文件中:

    1. // Prepare the SQL statement and get records from our contacts table, LIMIT will determine the page
    2. $stmt = $pdo->prepare('SELECT * FROM contacts ORDER BY id LIMIT :current_page, :record_per_page');
    3. $stmt->bindValue(':current_page', ($page-1)*$records_per_page, PDO::PARAM_INT);
    4. $stmt->bindValue(':record_per_page', $records_per_page, PDO::PARAM_INT);
    5. $stmt->execute();
    6. // Fetch the records so we can display them in our template.
    7. $contacts = $stmt->fetchAll(PDO::FETCH_ASSOC);

    上面的代码将从联系人表中选择记录,这将由用户所在的当前页面决定,记录将按id列排序,如果我们愿意,我们可以轻松更改按列排序,例如,如果我们将其更改为已创建,那么它将按创建日期对记录进行排序。

    我们还为上述查询使用了准备好的语句,这将确保我们的查询是安全的(转义用户输入数据)。

    将以下代码添加到read.php文件中:

    1. // Get the total number of contacts, this is so we can determine whether there should be a next and previous button
    2. $num_contacts = $pdo->query('SELECT COUNT(*) FROM contacts')->fetchColumn();
    3. ?>

    上面的SQL查询会得到contacts表的总记录数,这里我们不需要使用prepared statement,因为查询不包含用户输入变量。

    将以下代码添加到read.php文件中:

    1. template_header('Read')?>
    2. class="content read">
    3. <h2>Read Contactsh2>
    4. <a href="create.php" class="create-contact">Create Contacta>
    5. <table>
    6. <thead>
    7. <tr>
    8. <td>#td>
    9. <td>Nametd>
    10. <td>Emailtd>
    11. <td>Phonetd>
    12. <td>Titletd>
    13. <td>Createdtd>
    14. <td>td>
    15. tr>
    16. thead>
    17. <tbody>
    18. php foreach ($contacts as $contact): ?>
    19. <tr>
    20. <td>contact['id']?>td>
    21. <td>contact['name']?>td>
    22. <td>contact['email']?>td>
    23. <td>contact['phone']?>td>
    24. <td>contact['title']?>td>
    25. <td>contact['created']?>td>
    26. <td class="actions">
    27. <a href="update.php?id=contact['id']?>" class="edit"><i class="fas fa-pen fa-xs">i>a>
    28. <a href="delete.php?id=contact['id']?>" class="trash"><i class="fas fa-trash fa-xs">i>a>
    29. td>
    30. tr>
    31. php endforeach; ?>
    32. tbody>
    33. table>
    34. <div class="pagination">
    35. php if ($page > 1): ?>
    36. <a href="read.php?page=page-1?>"><i class="fas fa-angle-double-left fa-sm">i>a>
    37. php endif; ?>
    38. php if ($page*$records_per_page < $num_contacts): ?>
    39. <a href="read.php?page=page+1?>"><i class="fas fa-angle-double-right fa-sm">i>a>
    40. php endif; ?>
    41. div>
    42. div>
    43. template_footer()?>

    这是阅读页面的模板,代码迭代联系人并将它们添加到 HTML 表格中,当我们导航到阅读页面时,我们将能够以表格格式读取记录。

    添加了分页,因此我们可以在阅读页面(第 1 页、第 2 页等)上的页面之间导航。

    对于我们使用Font Awesome的图标,请确保它包含在标题模板功能中,否则图标将不会出现。

    现在,如果我们导航到http://localhost/phpcrud/read.php,我们将看到以下内容:

    http://localhost/projects/phpcrud/read.php

    所以现在我们知道如何显示 MySQL 数据库中的记录了,注意表格中出现的按钮(创建、编辑和删除)将不起作用,那是因为我们还没有创建这些页面。

    您也可以单击标题栏中的联系人链接,这将导航到阅读页面。

    4.4. 创建创建页面

    创建页面将用于创建新记录并将它们插入到我们的联系人表中。

    编辑create.php文件并添加:

    1. include 'functions.php';
    2. $pdo = pdo_connect_mysql();
    3. $msg = '';
    4. // Check if POST data is not empty
    5. if (!empty($_POST)) {
    6. // Post data not empty insert a new record
    7. // Set-up the variables that are going to be inserted, we must check if the POST variables exist if not we can default them to blank
    8. $id = isset($_POST['id']) && !empty($_POST['id']) && $_POST['id'] != 'auto' ? $_POST['id'] : NULL;
    9. // Check if POST variable "name" exists, if not default the value to blank, basically the same for all variables
    10. $name = isset($_POST['name']) ? $_POST['name'] : '';
    11. $email = isset($_POST['email']) ? $_POST['email'] : '';
    12. $phone = isset($_POST['phone']) ? $_POST['phone'] : '';
    13. $title = isset($_POST['title']) ? $_POST['title'] : '';
    14. $created = isset($_POST['created']) ? $_POST['created'] : date('Y-m-d H:i:s');
    15. // Insert new record into the contacts table
    16. $stmt = $pdo->prepare('INSERT INTO contacts VALUES (?, ?, ?, ?, ?, ?)');
    17. $stmt->execute([$id, $name, $email, $phone, $title, $created]);
    18. // Output message
    19. $msg = 'Created Successfully!';
    20. }
    21. ?>

    上面的代码会检查POST数组(表单数据)是否不为空,如果不是,则基本上意味着用户已经填写了表单并单击了提交按钮,这将在我们的联系人表中插入一条新记录。

    之后添加:

    1. template_header('Create')?>
    2. class="content update">
    3. <h2>Create Contacth2>
    4. <form action="create.php" method="post">
    5. <label for="id">IDlabel>
    6. <label for="name">Namelabel>
    7. <input type="text" name="id" placeholder="26" value="auto" id="id">
    8. <input type="text" name="name" placeholder="John Doe" id="name">
    9. <label for="email">Emaillabel>
    10. <label for="phone">Phonelabel>
    11. <input type="text" name="email" placeholder="johndoe@example.com" id="email">
    12. <input type="text" name="phone" placeholder="2025550143" id="phone">
    13. <label for="title">Titlelabel>
    14. <label for="created">Createdlabel>
    15. <input type="text" name="title" placeholder="Employee" id="title">
    16. <input type="datetime-local" name="created" value="date('Y-m-d\TH:i')?>" id="created">
    17. <input type="submit" value="Create">
    18. form>
    19. php if ($msg): ?>
    20. <p>msg?>p>
    21. php endif; ?>
    22. div>
    23. template_footer()?>

    这是我们创建页面的模板,如您所见,我们创建了一个表单并相应地命名了每个输入字段,输入字段的名称是我们在 PHP 代码中获取 POST 变量的方式,例如,如果我们将输入字段命名为“zip_code”,我们可以使用$_POST['zip_code']在 PHP 中(假设表单的方法设置为post)。

    现在,如果我们导航到http://localhost/phpcrud/create.php或单击阅读页面上的Create按钮,我们将看到以下内容:

    http://localhost/phpcrud/create.php

    4.5. 创建更新页面

    更新页面将用于更新我们的联系人表中的记录,此页面类似于创建页面,但我们将更新现有记录,而不是插入新记录。我们将能够通过 GET 请求获取记录 ID。

    编辑update.php文件并添加:

    1. include 'functions.php';
    2. $pdo = pdo_connect_mysql();
    3. $msg = '';
    4. // Check if the contact id exists, for example update.php?id=1 will get the contact with the id of 1
    5. if (isset($_GET['id'])) {
    6. if (!empty($_POST)) {
    7. // This part is similar to the create.php, but instead we update a record and not insert
    8. $id = isset($_POST['id']) ? $_POST['id'] : NULL;
    9. $name = isset($_POST['name']) ? $_POST['name'] : '';
    10. $email = isset($_POST['email']) ? $_POST['email'] : '';
    11. $phone = isset($_POST['phone']) ? $_POST['phone'] : '';
    12. $title = isset($_POST['title']) ? $_POST['title'] : '';
    13. $created = isset($_POST['created']) ? $_POST['created'] : date('Y-m-d H:i:s');
    14. // Update the record
    15. $stmt = $pdo->prepare('UPDATE contacts SET id = ?, name = ?, email = ?, phone = ?, title = ?, created = ? WHERE id = ?');
    16. $stmt->execute([$id, $name, $email, $phone, $title, $created, $_GET['id']]);
    17. $msg = 'Updated Successfully!';
    18. }
    19. // Get the contact from the contacts table
    20. $stmt = $pdo->prepare('SELECT * FROM contacts WHERE id = ?');
    21. $stmt->execute([$_GET['id']]);
    22. $contact = $stmt->fetch(PDO::FETCH_ASSOC);
    23. if (!$contact) {
    24. exit('Contact doesn\'t exist with that ID!');
    25. }
    26. } else {
    27. exit('No ID specified!');
    28. }
    29. ?>

    上面的代码会检查联系人ID,ID会是URL中的一个参数,例如http://localhost/phpcrud/update.php?id=1会得到ID为1的联系人,然后我们可以使用 GET 方法处理请求并执行 MySQL 查询,该查询将通过 ID 获取联系人。

    之后添加:

    1. template_header('Read')?>
    2. class="content update">
    3. <h2>Update Contact #contact['id']?>h2>
    4. <form action="update.php?id=contact['id']?>" method="post">
    5. <label for="id">IDlabel>
    6. <label for="name">Namelabel>
    7. <input type="text" name="id" placeholder="1" value="contact['id']?>" id="id">
    8. <input type="text" name="name" placeholder="John Doe" value="contact['name']?>" id="name">
    9. <label for="email">Emaillabel>
    10. <label for="phone">Phonelabel>
    11. <input type="text" name="email" placeholder="johndoe@example.com" value="contact['email']?>" id="email">
    12. <input type="text" name="phone" placeholder="2025550143" value="contact['phone']?>" id="phone">
    13. <label for="title">Titlelabel>
    14. <label for="created">Createdlabel>
    15. <input type="text" name="title" placeholder="Employee" value="contact['title']?>" id="title">
    16. <input type="datetime-local" name="created" value="date('Y-m-d\TH:i', strtotime($contact['created']))?>" id="created">
    17. <input type="submit" value="Update">
    18. form>
    19. php if ($msg): ?>
    20. <p>msg?>p>
    21. php endif; ?>
    22. div>
    23. template_footer()?>

    这是更新页面的模板,输入值已经用联系人列指定,我们之前创建的 MySQL 查询将获取这些值。

    在阅读页面(联系人)上,我们应该能够单击记录旁边的更新图标并对其进行更新,我们应该会看到如下内容:

    http://localhost/phpcrud/update.php?id=1

    4.6. 创建删除页面

    删除页面将用于从联系人表中删除记录。在用户可以删除记录之前,他们需要确认它,这将防止意外删除。

    编辑delete.php文件并添加:

    1. include 'functions.php';
    2. $pdo = pdo_connect_mysql();
    3. $msg = '';
    4. // Check that the contact ID exists
    5. if (isset($_GET['id'])) {
    6. // Select the record that is going to be deleted
    7. $stmt = $pdo->prepare('SELECT * FROM contacts WHERE id = ?');
    8. $stmt->execute([$_GET['id']]);
    9. $contact = $stmt->fetch(PDO::FETCH_ASSOC);
    10. if (!$contact) {
    11. exit('Contact doesn\'t exist with that ID!');
    12. }
    13. // Make sure the user confirms beore deletion
    14. if (isset($_GET['confirm'])) {
    15. if ($_GET['confirm'] == 'yes') {
    16. // User clicked the "Yes" button, delete record
    17. $stmt = $pdo->prepare('DELETE FROM contacts WHERE id = ?');
    18. $stmt->execute([$_GET['id']]);
    19. $msg = 'You have deleted the contact!';
    20. } else {
    21. // User clicked the "No" button, redirect them back to the read page
    22. header('Location: read.php');
    23. exit;
    24. }
    25. }
    26. } else {
    27. exit('No ID specified!');
    28. }
    29. ?>

    要删除记录,代码将检查 GET 请求变量“ id ”是否存在,如果存在则检查记录是否存在于联系人表中并确认用户是否要删除联系人,一个简单的 GET 请求将确定用户单击了哪个按钮(是或否)。

    之后添加:

    1. template_header('Delete')?>
    2. class="content delete">
    3. <h2>Delete Contact #contact['id']?>h2>
    4. php if ($msg): ?>
    5. <p>msg?>p>
    6. php else: ?>
    7. <p>Are you sure you want to delete contact #contact['id']?>?p>
    8. <div class="yesno">
    9. <a href="delete.php?id=contact['id']?>&confirm=yes">Yesa>
    10. <a href="delete.php?id=contact['id']?>&confirm=no">Noa>
    11. div>
    12. php endif; ?>
    13. div>
    14. template_footer()?>

    上面的代码是删除页面的模板,这包括按钮(删除确认)和输出消息。YesNo按钮将创建一个新的 GET 请求,以确认用户的选择。

    在阅读页面(联系人)上,单击其中一条记录上的删除按钮,您应该会看到类似以下内容:

    http://localhost/phpcrud/delete.php?id=1

    结论

    恭喜!您已经使用 PHP 和 MySQL 成功创建了一个 CRUD 应用程序,下一步是什么?考虑将您自己的列添加到联系人表和代码中。

    如果您喜欢本教程,请不要忘记使用下面的社交链接进行分享,并查看我们网站上的更多教程。

    享受编码!

  • 相关阅读:
    Redis源码与设计剖析 -- 11.哈希对象
    Pytorch学习整理笔记(一)
    链表错误:AddressSanitizer: heap-use-after-free on address
    脚本:用python实现五子棋
    【MySQL入门实战1】-数据库三大范式
    封装一个自己的前端脚手架cli工具(一)
    Setup exvim enviroment
    Tomcat的安装、在idea中的使用以及创建Web项目
    大数据学习(16)-mapreduce详解
    Creator 2.4.x 分享游戏图片
  • 原文地址:https://blog.csdn.net/allway2/article/details/126404462