Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 937 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 937 Bytes

ShareBoard: Object Oriented PHP Web App

Installation guide

  1. Create a MySQL database

  2. Import in your new database the Database/shareboard.sql file

  3. Add a config.php file in the root folder with:

<?php

// Define DB Params
define("DB_HOST", "localhost");
define("DB_USER", "root");
define("DB_PASS", "");
define("DB_NAME", "my-database-name");

// Define URL
define("ROOT_PATH", "/my-app-folder/");
define("ROOT_URL", "http://localhost/my-app-folder/");

Enjoy!