├── .gitattributes ├── README.md ├── bootstrap ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── intro-bg_11.jpg └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.min.js │ └── npm.js ├── cart.php ├── cart_add.php ├── cart_remove.php ├── check_if_added.php ├── connection.php ├── css └── style.css ├── database └── store.sql ├── header.php ├── header2.php ├── img ├── HXR.jpg ├── Thumbs.db ├── camera.jpg ├── cannon_eos.jpg ├── charles.jpg ├── cover.jpg ├── favreleuba.jpg ├── hmt.JPG ├── intro-bg_1.jpg ├── lifestyleStore.png ├── olympus.jpg ├── pink.jpg ├── raymond.jpg ├── shirt.jpg ├── sony_dslr.jpeg ├── sony_dslr2.jpeg ├── titan201.jpg ├── titan301.jpg └── watch.jpg ├── index.php ├── login.php ├── login_submit.php ├── logout.php ├── products.php ├── setting_script.php ├── settings.php ├── signup.php ├── success.php └── user_registration_script.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bootstrap/intro-bg_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/intro-bg_11.jpg -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /bootstrap/js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/bootstrap/js/npm.js -------------------------------------------------------------------------------- /cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/cart.php -------------------------------------------------------------------------------- /cart_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/cart_add.php -------------------------------------------------------------------------------- /cart_remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/cart_remove.php -------------------------------------------------------------------------------- /check_if_added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/check_if_added.php -------------------------------------------------------------------------------- /connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/connection.php -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/css/style.css -------------------------------------------------------------------------------- /database/store.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/database/store.sql -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/header.php -------------------------------------------------------------------------------- /header2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/header2.php -------------------------------------------------------------------------------- /img/HXR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/HXR.jpg -------------------------------------------------------------------------------- /img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/Thumbs.db -------------------------------------------------------------------------------- /img/camera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/camera.jpg -------------------------------------------------------------------------------- /img/cannon_eos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/cannon_eos.jpg -------------------------------------------------------------------------------- /img/charles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/charles.jpg -------------------------------------------------------------------------------- /img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/cover.jpg -------------------------------------------------------------------------------- /img/favreleuba.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/favreleuba.jpg -------------------------------------------------------------------------------- /img/hmt.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/hmt.JPG -------------------------------------------------------------------------------- /img/intro-bg_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/intro-bg_1.jpg -------------------------------------------------------------------------------- /img/lifestyleStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/lifestyleStore.png -------------------------------------------------------------------------------- /img/olympus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/olympus.jpg -------------------------------------------------------------------------------- /img/pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/pink.jpg -------------------------------------------------------------------------------- /img/raymond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/raymond.jpg -------------------------------------------------------------------------------- /img/shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/shirt.jpg -------------------------------------------------------------------------------- /img/sony_dslr.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/sony_dslr.jpeg -------------------------------------------------------------------------------- /img/sony_dslr2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/sony_dslr2.jpeg -------------------------------------------------------------------------------- /img/titan201.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/titan201.jpg -------------------------------------------------------------------------------- /img/titan301.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/titan301.jpg -------------------------------------------------------------------------------- /img/watch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/img/watch.jpg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/index.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/login.php -------------------------------------------------------------------------------- /login_submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/login_submit.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/logout.php -------------------------------------------------------------------------------- /products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/products.php -------------------------------------------------------------------------------- /setting_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/setting_script.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/settings.php -------------------------------------------------------------------------------- /signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/signup.php -------------------------------------------------------------------------------- /success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/success.php -------------------------------------------------------------------------------- /user_registration_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/projectworldsofficial/online-shopping-webvsite-in-php/HEAD/user_registration_script.php --------------------------------------------------------------------------------