setupdefault.inc 319 B

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