First commit ~0,10

This commit is contained in:
2021-09-12 22:43:41 +02:00
commit bf5a636f7a
140 changed files with 13185 additions and 0 deletions

5
addons/open_db.php Normal file
View File

@ -0,0 +1,5 @@
<?
global $conexion, $id;
$conexion = mysql_connect( 'localhost', 'PMUSICA_users', 'pmusica_password' ) OR die("No puedo conectar");
$id = mysql_select_db( 'PMUSICA', $conexion ) OR die("No puedo abrir Base de Datos");
?>