我正在尝试通过学习来创建一个 1 对 1 聊天网站,但我遇到了麻烦。
我无法写入数据库。
我在下面链接了四个 php 文件。
- 指数
在里面:
session_start(); define('LOGGED_IN', true); require 'classes/Core.php'; require 'classes/Chat.php'; ?>
核:
class Core { protected $db, $result; private $rows; public function __construct() { $this->db = new mysqli("localhost","root",""); } public function query($sql) { $this->result = $this->db->query($sql); } public function rows() { for($x = 1; $x <= $this->db->affected_rows; $x++) { $this->rows[] = $this->result->fetch_assoc(); } return $this->rows; } } ?>
我有一个使用 WAMP 设置的 MySql 数据库。
PS 是的,我打开了“< ? php”,但这里没有显示。