Return to setupdefault.inc CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / mysql / tests |
1.1 misho 1: <?php 2: 3: // copy variables from connect.inc into mysql default connection ini settings, so that implicit mysql_connect() behaviour can be tested where needed 4: // must be loaded AFTER connect.inc 5: 6: ini_set('mysql.default_host', $host); 7: ini_set('mysql.default_user', $user); 8: ini_set('mysql.default_password', $passwd); 9: 10: ?>