This repository has been archived on 2019-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
SistemiPHP/negozioVirtuale/globals.php

14 lines
260 B
PHP

<?php
define('DB_HOST', 'localhost');
define('DB_USER', 'root');
define('DB_PASS', 'password');
define('DB_NAME', 'negozio_online');
session_start();
//ignora sotto
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);