mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
10 lines
333 B
PHP
10 lines
333 B
PHP
<?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);
|
|
|
|
?>
|