|
Re: database failure
That is a classic file not found error with php, make sure that the correct location for that file has been given to the require_once() function.
Remember that you should probably give it a location starting with the server root, or a '/'. So something like 'require_once("/home/stalkio/public_html/Connections/dic3.php");', should work.
|