summary refs log tree commit diff stats
path: root/includes/db.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/db.php')
-rwxr-xr-xincludes/db.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/includes/db.php b/includes/db.php index 6554b8a..e2d67ee 100755 --- a/includes/db.php +++ b/includes/db.php
@@ -1,9 +1,7 @@
1<?php 1<?php
2 2
3include_once('fix_mysql.inc.php');
4include('/srv/www/security/pillowcase.php'); 3include('/srv/www/security/pillowcase.php');
5 4
6$mysql_conn = mysql_connect($dbhost, $dbuser, $dbpasswd); 5$mysql_conn = new mysqli($dbhost, $dbuser, $dbpasswd, $dbname);
7mysql_select_db($dbname);
8 6
9?> 7?>