<?php

  define
('MYSQL_USER''user'); // the mysql database user
  
define('MYSQL_PASSWORD''pass'); // the mysql database password
  
define('MYSQL_HOST''localhost'); // the mysql database host, normally localhost
  
define('MYSQL_DATABASE','the-database'); // the mysql database
  
define('MYSQL_ERROR_LOG','/path/to/mysql-errors');

?>