Skip to content

julianstewart/address_book

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rolodexterous

Rolodexterous is a simple PHP/MySQL address book & contact management app originally created for the Epicodus week one object-oriented PHP Code Review, updated 2015-09-21

By Julian Stewart

Setup

This project makes use of a PHP dependency manager. Full details and installation instructions can be found at https://getcomposer.org/

Your computer must also be set up to support PDO (PHP Data Objects) and MySQL.

To run the application:

  • Start your MySQL server from the root level of the project folder, being sure to adjust the port number if needed
  • Import the databases included in this repository in the sql/ directory, or run the following commands:
CREATE DATABASE address_book;
USE address_book;
CREATE TABLE contacts (id serial PRIMARY KEY, name VARCHAR (255), phone_number VARCHAR(255), address VARCHAR (255));
CREATE TABLE categories (id serial PRIMARY KEY, name VARCHAR (255));
CREATE TABLE categories_contacts (id serial PRIMARY KEY, category_id int, task_id int);
  • Start your PHP server from the web/ directory within the project folder
  • Point your browser to your localhost server address

Technologies Used

PHP, Silex, Twig, MySQL

Legal

Copyright (c) 2015 Julian Stewart

This software is licensed under the MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Rolodexterous is a simple PHP/MySQL address book & contact management app originally created for the Epicodus week one object-oriented PHP Code Review.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published