Skip to content
Snippets Groups Projects
Commit b82a7cf7 authored by Christophorus Dharma Winata's avatar Christophorus Dharma Winata
Browse files

refactor: removing unused files

readme: adding pembagian tugas
parent 710c646c
Branches
Tags
No related merge requests found
...@@ -43,9 +43,26 @@ localhost:8008/client/pages/login-page.php ...@@ -43,9 +43,26 @@ localhost:8008/client/pages/login-page.php
### Server-side ### Server-side
Login : 13521009, 13521012 Login : 13521009, 13521012
Register : 13521009, 13521012 Register : 13521009, 13521012
Mock datas: 13521009
Logout : 13521009, 13521012
Navigation bar : 13521012
User edit profile : 13521009
User making sales : 13521009
Database Schema : 13521009
Dockerfile, docker-compose : 13521009
Catalog : 13521012
Pagination : 13521012
Search : 13521012
### Client-side ### Client-side
Login : 13521009, 13521012 Login : 13521009, 13521012
Register : 13521009, 13521012 Register : 13521009, 13521012
Sidebar : 13521009, 13521012, 13521020 Navigation bar : 13521012
\ No newline at end of file User edit profile : 13521009
Cart : 13521009
User making sales : 13521009
Sidebar : 13521009, 13521012, 13521020
Catalog : 13521012
Pagination : 13521012
Search : 13521012
\ No newline at end of file
CREATE TABLE product (
prod_id VARCHAR(6) PRIMARY KEY,
prod_name VARCHAR(50),
price INT,
prod_quant INT,
prod_desc VARCHAR(100),
prod_image VARCHAR(255)
);
INSERT INTO product (prod_id, prod_name, price, prod_quant, prod_desc, prod_image)
SELECT '00001', 'bts stay gold album', 1000000, 5, 'New, includes BTS sticker', 'bts_stay_gold.jpeg'
FROM generate_series(1, 100);
<?php
include "connect_database.php";
$con = connect_database();
if ($con) {
echo "wow";
} else {
echo "wokwow";
}
?>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment