有一个我在记事本++中创建的帮助文件,语法如下
//Filename:PHP_Help.html
<!-- Heading of the Issue/Solution
// it may contain PHP Code or Mysql Queries or General Description
<?php
// Code that fixed the issue/ Solution to a problem
?>
Some general Description
-->
我使用了上述格式,因为在记事本++中,如果我按“ALT + 0”
它显示为
<!-- Heading of issue 1
<!-- Heading of issue 2
以便它有助于找到阅读标题问题的解决方案。但是帮助文件变大了,包含了数百个问题
所以我正在尝试将文件加载到数据库并使用 PHP 来搜索问题/解决方案
我的数据库架构就像
Create table issues
(
id int auto_increment primary key,
header nvarchar(100),
content text
);
我的问题是如何将特定文件加载到数据库中?