You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the database is written using PDO, however the MySQL connection is not established with PDO. By not having a PDO connection, the prepare method keeps throwing an error.
In lib/db.php the connection for MySQL should be:
$this->connection = new PDO("mysql:host=$this->host;dbname=$this->db", $this->username, $this->passwd);
The text was updated successfully, but these errors were encountered:
All of the database is written using PDO, however the MySQL connection is not established with PDO. By not having a PDO connection, the prepare method keeps throwing an error.
In lib/db.php the connection for MySQL should be:
$this->connection = new PDO("mysql:host=$this->host;dbname=$this->db", $this->username, $this->passwd);
The text was updated successfully, but these errors were encountered: