mirror of
https://github.com/stroggprog/os-partnership.git
synced 2026-08-14 00:57:56 +00:00
9 lines
227 B
PHP
Executable File
9 lines
227 B
PHP
Executable File
<?php
|
|
function setDBParameters( $db ){
|
|
$db->Host = "localhost";
|
|
$db->Database = "opensim";
|
|
$db->User = "opensimuser";
|
|
$db->Password = "opensimuserPassword"; // honestly, if this is your password, change it
|
|
}
|
|
?>
|