config.php 350 Bytes
<?php
define('URL','http://localhost/arcu/');
define('HOST','localhost');
define('DB','arcu2');
define('USER','postgres');
define('PASSWORD','123456');    
define('CHARSET','utf8mb4');
define('PORT','5432');

// ------ CONSTANTES PARA ENCRIPTAR ---
define('METHOD','AES-256-CBC');
define('SECRET_KEY','$ARCU@2019');
define('SECRET_IV','121710');

?>