Files
os-partnership/php/lib/db_params.php
T
2025-06-22 17:58:01 +01:00

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
}
?>