Very cool database I have tested it out on my personal web server and everything works great. My problem is that my internet web host will not allow me to name the database. They add a prefix to the beginning of the database name, so I need to know how to change the name of the database from glist. Is this possible and if so, which files do i need to alter? Thanks for you reply and for creating such a cool database.
Create a include/config.php file and set the following according to what your provider gave you. Replace "glist" with the database name assigned to you:
// Database settings
$DBUSER = 'user';
$DBPASS = 'password';
$DBDSN = 'mysql:host=127.0.0.1;dbname=glist';