PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of António Lira Fernandes   Web Service PHP MySQL   config.php   Download  
File: config.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Web Service PHP MySQL
Implement an API using MySQL to store objects
Author: By
Last change:
Date: 18 hours ago
Size: 361 bytes
 

Contents

Class file image Download
<?php

define
("_URL", 'https://yourdomain.com');

define("_SERVER", 'localhost');
define("_BDUSER", 'BDUser');
define("_BDPASS", 'PASSW');
define("_BD", 'DATABASENAME');

define("_CAMINHO_TEMPLATE", '../templates/base/');
define("_CAMINHO_ADM", '../admin/');
define("_CAMINHO_ERROS", "../templates/Errors/");

define("_JSON_CARROS", "../json/dados.json");

?>