这是一个简单的问题。
使用 PHP 和 MySQL,我正在尝试构建一个错误报告应用程序。
目前,用户可以发布错误并将错误列表描绘给技术人员/管理员。
如何使许多技术人员或管理员可以回复报告(线程?)
就像在 mysql 表布局和 PHP 编码中一样?
当前 MySQL 表的布局为:
id (Bug ID)
by (person reporting it)
title (Report Title)
content (Contents of Report)
datetime (Date/Time of report)
application (Application/page where problems happens)
priority (Priority)
assigned (Assigned To)
status (Status of report/bug)
所以还没有响应列,但是如何使用 PHP 和 MySQLi 实现多个帖子/响应?
谢谢