**连接数据库**
想要连接数据库,我们首先必须先创建一个控制器类,打开VS code,进入已经创建过的php中,创建控制器类。
![](https://img.kancloud.cn/33/6f/336fb655937981d43119f31a5f1be2e2_691x386.jpg)
```
<?php
namespace app\\index\\controller;
use think\\Controller;
use think\\Db;
class Index extends Controller
{
public function index()
{
后面的数据库查询代码都放在这个位置
return $this\->fetch();
}
```
输入完过后就可以通过数据库修改信息了。