Actualizar diseño visual del cotizador y corregir estilos

This commit is contained in:
ganglyglub2-gif
2025-11-14 12:35:49 -06:00
parent d81aec8caf
commit a407fc298c
145 changed files with 29904 additions and 463 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
$db_name = 'pm012020db';
try {
$pdo = new PDO("pgsql:host=127.0.0.1;port=5432;dbname=".$db_name, "usrpm012020", 'Pr0y3ct0s2020#');
} catch (PDOException $e) {
echo "Error de conexión! ";
print_r($e->getMessage());
exit();
}
unset($db_name);
?>