1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php $dbh = mysql_connect("192.168.171.21", "e_imssa", "R8jf29ei");
if (!$dbh) { die('Could not connect: ' . mysql_error()); } $selected = mysql_select_db("e_ims",$dbh) or die("Could not select first_test"); mysql_query("SET NAMES UTF8");
require_once __DIR__.'/inc/Db.php'; Db::init('mysql:host=192.168.171.21;dbname=e_ims', 'e_imssa', 'R8jf29ei');
|