How to use PHP to implement a simple online complaint and suggestion system

PHPz
Release: 2023-09-24 11:20:01
Original
1107 people have browsed it

How to use PHP to implement a simple online complaint and suggestion system

How to use PHP to implement a simple online complaint and suggestion system

In modern society, people have higher and higher requirements for service quality and experience. Complaints and suggestions It has become an important channel for enterprises to improve services. In order to facilitate users to send complaints and suggestions, and to manage and respond to them, we can use PHP to develop a simple online complaint and suggestion system.

System requirements analysis:

  1. Users can submit complaints or suggestions through the system and fill in the corresponding information, such as name, contact information, complaint type, specific content, etc.
  2. Complaints or suggestions submitted can be viewed, responded to and processed in the backend management system.
  3. Backend administrator can classify and manage complaints or suggestions, including viewing all complaints or suggestions, filtering by type, filtering by status, etc.

System design and implementation:

  1. Create database and table structure:
    Create a file named complaints in the database Table, including fields id, name, contact, type, content, status, reply and created_at.

    CREATE TABLE complaints (
      id INT(11) AUTO_INCREMENT PRIMARY KEY,
      name VARCHAR(100) NOT NULL,
      contact VARCHAR(100) NOT NULL,
      type VARCHAR(100) NOT NULL,
      content TEXT NOT NULL,
      status ENUM('pending', 'resolved', 'replied') DEFAULT 'pending',
      reply TEXT,
      created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
    );
    Copy after login
  2. Front-end page design:
    Create a form in the front-end page for users to submit complaints or suggestions. The form includes fields for entering your name, contact details, complaint type and details, as well as a submit button.

    <form method="POST" action="submit.php">
      <input type="text" name="name" placeholder="姓名" required><br>
      <input type="text" name="contact" placeholder="联系方式" required><br>
      <input type="text" name="type" placeholder="投诉类型" required><br>
      <textarea name="content" placeholder="具体内容" required></textarea><br>
      <input type="submit" value="提交">
    </form>
    Copy after login
  3. Back-end code implementation:
    a. Submit a complaint or suggestion:
    Create a submit.php file, obtain the data in the form through the POST method, and insert it into the database middle.

    <?php
      // 连接数据库
      $conn = mysqli_connect("localhost", "root", "密码", "数据库名");
      
      // 获取表单数据
      $name = $_POST['name'];
      $contact = $_POST['contact'];
      $type = $_POST['type'];
      $content = $_POST['content'];
      
      // 插入数据到数据库
      $sql = "INSERT INTO complaints (name, contact, type, content) VALUES ('$name', '$contact', '$type', '$content')";
      if (mysqli_query($conn, $sql)) {
     echo "提交成功!";
      } else {
     echo "提交失败:" . mysqli_error($conn);
      }
      
      // 关闭数据库连接
      mysqli_close($conn);
    ?>
    Copy after login

b. Backend management system:
Create an admin.php file for managing complaints or suggestions.

<?php
  // 连接数据库
  $conn = mysqli_connect("localhost", "root", "密码", "数据库名");
  
  // 查询所有投诉或建议
  $sql = "SELECT * FROM complaints";
  $result = mysqli_query($conn, $sql);
  
  // 输出投诉或建议列表
  while ($row = mysqli_fetch_assoc($result)) {
    echo "姓名:" . $row['name'] . "<br>";
    echo "联系方式:" . $row['contact'] . "<br>";
    echo "投诉类型:" . $row['type'] . "<br>";
    echo "具体内容:" . $row['content'] . "<br>";
    echo "状态:" . $row['status'] . "<br>";
    echo "回复:" . $row['reply'] . "<br>";
    echo "提交时间:" . $row['created_at'] . "<br>";
    echo "<hr>";
  }
  
  // 关闭数据库连接
  mysqli_close($conn);
?>
Copy after login

The above code example is just a simple demonstration. In actual projects, data verification, user rights control, etc. also need to be processed. Through the above steps, we can quickly use PHP to implement a simple online complaint and suggestion system, which facilitates users to submit complaints and suggestions, and can be processed and responded to in the background management system.

The above is the detailed content of How to use PHP to implement a simple online complaint and suggestion system. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!