Skip to content

jschold/shoe_stores

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shoe Stores

_An app where users can add and view stores and brands sold in the stores. _

By Jenna Navratil

Description

This app allows users to add and view stores and the brands they carry (and vice versa). Users can update the store name and delete a single store. They can also delete all brands.

Setup

Clone the repository. Run the command $composer install in the top level of the cloned directory. Open a PHP server in the web folder of the top level. For a mac, run the following command in your terminal:

php -S localhost:8000. Then open your web browser of choice to localhost:8000.

Start mysql server and adjust ports/root directory. Start Apache server. Open PHPmyAdmin and import the database file.

Technologies Used

HTML CSS PHP PHPUnit Silex Twig MySql Bootstrap

Legal

Copyright (c) 2015 Jenna Navratil

This software is licensed under the MIT license.

MySql Commands

SELECT DATABASE(); CREATE DATABASE shoe_stores; USE shoe_stores; CREATE TABLE store(store_name VARCHAR(255), id serial PRIMARY KEY); CREATE TABLE brand(brand_name VARCHAR(255), id serial PRIMARY KEY); CREATE TABLE stores_brands(store_id int, brand_id int, id serial PRIMARY KEY);

About

Database Code Review: an app where users can link shoe stores to the brands they sell, and vice versa

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published