more internationalization and input validation project
[openemr.git] / library / sqlconf.php
blob1bc342b5459e78cf3346c39283bcf5670eba1691
1 <?php
2 // OpenEMR
3 // MySQL Config
4 // Referenced from sql.inc
6 $host = 'localhost';
7 $port = '3306';
8 $login = 'openemr';
9 $pass = 'openemr';
10 $dbase = 'openemr';
12 //Added ability to disable
13 //utf8 encoding - bm 05-2009
14 $disable_utf8_flag = false;
16 $sqlconf = array();
17 $sqlconf["host"]= $host;
18 $sqlconf["port"] = $port;
19 $sqlconf["login"] = $login;
20 $sqlconf["pass"] = $pass;
21 $sqlconf["dbase"] = $dbase;
22 //////////////////////////
23 //////////////////////////
24 //////////////////////////
25 //////DO NOT TOUCH THIS///
26 $config = 0; /////////////
27 //////////////////////////
28 //////////////////////////
29 //////////////////////////