Skip to content
/ Shoes Public

Assignment written for Epicodus code review August 21st - Week 4 PHP - working with MySQL, Silex, Twig, Composer, PHPUnit, PHPMyAdmin, Bootstrap, etc

Notifications You must be signed in to change notification settings

r-hills/Shoes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SHOE LISTING

An app to display and edit lists of Shoe Stores and the Shoe Brands they carry. Written as an Epicodus Code Review 21-Aug-2015_

By Rick Hills

Description

An app to add and edit lists of Shoe Stores and the brands they carry, either by Store or by Brand.

Setup

  • Clone this repository
  • Run composer install in project folder
  • Unzip shoes.sql and import to MySQL database
  • Start PHP server in web folder
  • Navigate web browser to localhost:8000

MySQL Commands used, as per class instructions:

mysql> create database shoes; Query OK, 1 row affected (0.00 sec)

mysql> use shoes; Database changed mysql> create table brands(name varchar (255), id serial primary key); Query OK, 0 rows affected (0.45 sec)

mysql> create table stores(name varchar (255), address varchar (255), phone varc har (50), id serial primary key); Query OK, 0 rows affected (0.44 sec)

mysql> create table partnerships(brand_id int, store_id int, id serial); Query OK, 0 rows affected (0.46 sec)

mysql>

Technologies Used

PHP, Twig, Silex, PHPUnit, MySQL, HTML, Bootstrap, CSS

Legal

Copyright (c) 2015 Rick Hills

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

Assignment written for Epicodus code review August 21st - Week 4 PHP - working with MySQL, Silex, Twig, Composer, PHPUnit, PHPMyAdmin, Bootstrap, etc

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published