├── .gitignore ├── AddItem.php ├── README.md ├── css ├── bootstrap.min.css └── main.css ├── database.php ├── eBaySession.php ├── ebay_items.sql ├── favicon.ico ├── getCategoriesInfo.php ├── img └── ebay.png ├── index.php ├── js ├── app.js ├── bootstrap.min.js ├── jquery-3.5.1.min.js └── popper.min.js ├── keys.php └── uploads └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/.gitignore -------------------------------------------------------------------------------- /AddItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/AddItem.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/README.md -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/css/main.css -------------------------------------------------------------------------------- /database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/database.php -------------------------------------------------------------------------------- /eBaySession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/eBaySession.php -------------------------------------------------------------------------------- /ebay_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/ebay_items.sql -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/favicon.ico -------------------------------------------------------------------------------- /getCategoriesInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/getCategoriesInfo.php -------------------------------------------------------------------------------- /img/ebay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/img/ebay.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/index.php -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/js/app.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/js/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/js/popper.min.js -------------------------------------------------------------------------------- /keys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/keys.php -------------------------------------------------------------------------------- /uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishiv3/ebayAddItem/HEAD/uploads/index.html --------------------------------------------------------------------------------