blob: 6d25c20840d1319408ad02301b43b80430285621 (
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);
ini_set('mysql.default_user', $user);
ini_set('mysql.default_password', $passwd);
?>
|