blob: b13402ec148bf906e548c9762ac2a680e4d429d8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
// copy variables from connect.inc into mysql default connection ini settings, so that implicit mysql_connect() behaviour can be tested where needed
// must be loaded AFTER connect.inc
ini_set('mysql.default_host', $host . ":" . $port);
ini_set('mysql.default_user', $user);
ini_set('mysql.default_password', $passwd);
?>
|