view the config.php file

from 'view config.php content + editor' you can add some codes in this file with php editor.
file name: config.php
Size: 336 B
date: 8 months ago

This file is located in cool-mysql-error-page.zip

<?php

//Copyright © 2008-2010 Jooria Refresh Your Website <http://www.jooria.com>

$dbhost = "localhost";
$dbname = "name";
$dbuname = "datapass user name";
$ppass = "the password";

$connect = @mysql_select_db($dbname,@mysql_connect($dbhost,$dbuname,$ppass));
if (!$connect) {
include ("noconnection.html");
exit;
}

?>