Internationalization: some more documentation fixes
[openemr.git] / sites / default / sqlconf.php
blob273da1b761b7e8dc2e07cbb64cd934f4b12950ba
1 <?php
2 // OpenEMR
3 // MySQL Config
4 // Referenced from /library/sqlconf.php.
6 global $disable_utf8_flag;
7 $disable_utf8_flag = false;
9 $host = 'localhost';
10 $port = '3306';
11 $login = 'openemr';
12 $pass = 'openemr';
13 $dbase = 'openemr';
15 $sqlconf = array();
16 global $sqlconf;
17 $sqlconf["host"]= $host;
18 $sqlconf["port"] = $port;
19 $sqlconf["login"] = $login;
20 $sqlconf["pass"] = $pass;
21 $sqlconf["dbase"] = $dbase;
23 //////////////////////////
24 //////////////////////////
25 //////////////////////////
26 //////DO NOT TOUCH THIS///
27 $config = 0; /////////////
28 //////////////////////////
29 //////////////////////////
30 //////////////////////////