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 6ini_set('mysql.default_host', $host); 7ini_set('mysql.default_user', $user); 8ini_set('mysql.default_password', $passwd); 9 10?> 11