{"id":15022838,"url":"https://github.com/piratesmanx1/shoppa-2020","last_synced_at":"2026-02-22T16:03:20.367Z","repository":{"id":129710156,"uuid":"273865474","full_name":"piratesmanX1/shoppa-2020","owner":"piratesmanX1","description":"A group assignment that required us to apply the knowledge of AJAX and Bootstrap 4 that's been taught in this course. On this assessment we've chose to create a website that focused on selling the technological products such as phone and laptop. The assessment is not much of a hard task to handle with as I've self-learned the concept of AJAX and Bootstrap 4 in my previous project like Meal-Debit System in 2019. With that, the assessment allowed me to obtain more experience from implementing these concepts, and deepened my knowledge of AJAX and Bootstrap 4 from this course.","archived":false,"fork":false,"pushed_at":"2020-06-21T08:57:09.000Z","size":6449,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-24T20:39:37.239Z","etag":null,"topics":["ajax","ajax-call","ajax-form","ajax-request","ajax-search","ajax-upload","html","html-css","html-css-javascript","html-template","html5","html5-canvas","php","php5","phpmyadmin","sql","sql-query","sql-server","xmlhttprequest"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/piratesmanX1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-21T08:36:18.000Z","updated_at":"2020-10-15T00:37:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"df9db02e-8f56-47ee-bc1d-106bc585ec90","html_url":"https://github.com/piratesmanX1/shoppa-2020","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/piratesmanX1/shoppa-2020","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piratesmanX1%2Fshoppa-2020","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piratesmanX1%2Fshoppa-2020/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piratesmanX1%2Fshoppa-2020/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piratesmanX1%2Fshoppa-2020/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/piratesmanX1","download_url":"https://codeload.github.com/piratesmanX1/shoppa-2020/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piratesmanX1%2Fshoppa-2020/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29717890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ajax","ajax-call","ajax-form","ajax-request","ajax-search","ajax-upload","html","html-css","html-css-javascript","html-template","html5","html5-canvas","php","php5","phpmyadmin","sql","sql-query","sql-server","xmlhttprequest"],"created_at":"2024-09-24T19:58:26.459Z","updated_at":"2026-02-22T16:03:20.327Z","avatar_url":"https://github.com/piratesmanX1.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# shoppa-2020\nA group assignment that required us to apply the knowledge of AJAX and Bootstrap 4 that's been taught in this course. On this assessment we've chose to create a website that focused on selling the technological products such as phone and laptop. The assessment is not much of a hard task to handle with as I've self-learned the concept of AJAX and Bootstrap 4 in my previous project like Meal-Debit System in 2019. With that, the assessment allowed me to obtain more experience from implementing these concepts, and deepened my knowledge of AJAX and Bootstrap 4 from this course.\n\n**DISCLAIMER: The uploaded project file is only for references and comparison, the project file will not be used in any profit-oriented activities without my permission. The user that downloaded the said project will be responsible for any outcomes of their future implementation on the project, and I will not held any legal responsibilities upon your action. However, any users are welcomed to suggest any changes or improvements upon the project if they want to.**\n\n**===================================INSTRUCTIONS===================================**\n1. Import Database into phpMyAdmin. (File name: ```fwddlab.sql```)\n2. Go to SQL tab in phpMyAdmin and type this (before that enable event scheduler, type in SQL tab with this: ```SET GLOBAL event_scheduler=\"ON\"; ```):\n\n```\nCREATE DEFINER=`root`@`localhost` EVENT `generate_report` ON SCHEDULE EVERY 1 MONTH STARTS '2020-04-30 23:59:55' ON COMPLETION NOT PRESERVE ENABLE COMMENT 'Automatically generates Monthly Report at the end of the month.' DO INSERT INTO monthly_report\n(report_name, product_id, product_name, product_cost, product_quantity_total, product_category_id, product_cost_total, month_report, year_report, generated_time)\nSELECT MONTHNAME(CURRENT_TIMESTAMP()), cart_item.product_id, product.product_name, product.product_price, SUM(cart_item.cart_item_quantity),\nproduct.category_id, ((SUM(cart_item_quantity)) * product.product_price), MONTH(CURRENT_TIMESTAMP()), YEAR(CURRENT_TIMESTAMP()), CURRENT_TIMESTAMP()\nFROM product INNER JOIN cart_item\nON product.product_id = cart_item.product_id\nINNER JOIN cart ON cart_item.cart_id = cart.cart_id\nWHERE cart.cart_status = 1\nGROUP BY cart_item.product_id\n```\n\n3. Download the files, put all the files into the folder named ```FWDD_Shoppa``` inside it and place it in ```www``` in WAMP.\n\nwith the directory like this: ```www\\APU\\ASSIGNMENT\\FWDD_Shoppa\\homepage.html```\n\n4. Change some setting in WAMP to let HTML run the PHP code as well: \n\nFollow the instruction in this link:\nhttps://stackoverflow.com/questions/11312316/how-do-i-add-php-code-file-to-html-html-files\n\n**===================================INSTRUCTIONS===================================**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiratesmanx1%2Fshoppa-2020","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiratesmanx1%2Fshoppa-2020","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiratesmanx1%2Fshoppa-2020/lists"}