Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PA1-1617-D3TI05
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fredrick Mangampu Theodorus Pardosi
PA1-1617-D3TI05
Commits
8254d438
Commit
8254d438
authored
May 17, 2017
by
Fredrick Mangampu Theodorus Pardosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bagian feedback/komentar kepada Cafe Bunga Toba
parent
22796eb1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
130 additions
and
0 deletions
+130
-0
hapus_komen.php
hapus_komen.php
+10
-0
komentar_process.php
komentar_process.php
+20
-0
list_komentar.php
list_komentar.php
+100
-0
No files found.
hapus_komen.php
0 → 100644
View file @
8254d438
<?php
session_start
();
include_once
'functions/fungsi.php'
;
include_once
'connection/koneksi.php'
;
$id
=
$_GET
[
'id'
];
mysql_query
(
"DELETE FROM komentar WHERE id = '
$id
'"
);
header
(
'Location: list_komentar.php'
);
?>
\ No newline at end of file
komentar_process.php
0 → 100644
View file @
8254d438
<?php
session_start
();
include_once
'functions/fungsi.php'
;
include_once
'connection/koneksi.php'
;
$nama
=
$_POST
[
'name'
];
$email
=
$_POST
[
'email'
];
$komentar
=
$_POST
[
'message'
];
$query
=
'INSERT INTO komentar( `name`, `email`, `komentar`) VALUES(?, ?, ?)'
;
$statement
=
$database
->
prepare
(
$query
);
$statement
->
bind_param
(
'sss'
,
$nama
,
$email
,
$komentar
);
$statement
->
execute
();
redirect
(
'index.php'
);
?>
\ No newline at end of file
list_komentar.php
0 → 100644
View file @
8254d438
<?php
session_start
();
include_once
'functions/fungsi.php'
;
include_once
'connection/koneksi.php'
;
?>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"UTF-8"
>
<title>
Cafe Bunga Toba
</title>
<link
rel=
"stylesheet"
href=
"css/normalize.css"
>
<link
rel=
"stylesheet"
href=
"css/main.css"
media=
"screen"
type=
"text/css"
>
<link
href=
'http://fonts.googleapis.com/css?family=Pacifico'
rel=
'stylesheet'
type=
'text/css'
>
<link
href=
'http://fonts.googleapis.com/css?family=Playball'
rel=
'stylesheet'
type=
'text/css'
>
<link
rel=
"stylesheet"
href=
"css/bootstrap.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"css/style-portfolio.css"
>
<link
rel=
"stylesheet"
href=
"css/picto-foundry-food.css"
/>
<link
rel=
"stylesheet"
href=
"css/jquery-ui.css"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<link
href=
"css/font-awesome.min.css"
rel=
"stylesheet"
>
<link
rel=
"icon"
href=
"favicon-1.ico"
type=
"image/x-icon"
>
</head>
<body>
<nav
class=
"navbar navbar-default navbar-fixed-top"
role=
"navigation"
>
<div
class=
"container"
>
<div
class=
"row"
>
<!-- Brand and toggle get grouped for better mobile display -->
<div
class=
"navbar-header"
>
<button
type=
"button"
class=
"navbar-toggle collapsed"
data-toggle=
"collapse"
data-target=
"#bs-example-navbar-collapse-1"
>
<span
class=
"sr-only"
>
Toggle navigation
</span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
<span
class=
"icon-bar"
></span>
</button>
<a
class=
"navbar-brand"
href=
"index.php"
>
Cafe BUNGA TOBA
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div
class=
"collapse navbar-collapse"
id=
"bs-example-navbar-collapse-1"
>
<ul
class=
"nav navbar-nav main-nav clear navbar-right "
>
<li><a
class=
"navactive color_animation"
href=
"index.php"
>
WELCOME
</a></li>
<?php
if
(
isset
(
$_SESSION
[
'isLogin'
])
&&
(
get_session
(
'role'
)
==
"member"
))
{
echo
(
'<li><a class="color_animation" href="#pricing">MENU</a></li>'
);
echo
(
'<li><a class="color_animation" href="#pesanan">PESANAN</a></li>'
);
echo
(
'<li><a class="color_animation" href="#pembayaran">Pembayaran</a></li>'
);
echo
(
'<li><a class="color_animation" href="logout.php">LOGOUT ('
.
get_session
(
'first_name'
)
.
')</a></li>'
);
}
if
(
isset
(
$_SESSION
[
'isLogin'
])
&&
(
get_session
(
'role'
)
==
"karyawan"
||
get_session
(
'role'
)
==
"admin"
))
{
echo
(
'<li><a class="color_animation" href="index.php #olahmenu">OLAH MENU</a></li>'
);
echo
(
'<li><a class="color_animation" href="index.php #daftarpesanan">DAFTAR PESANAN</a></li>'
);
echo
(
'<li><a class="color_animation" href="list_komentar.php">DAFTAR KOMENTAR</a></li>'
);
echo
(
'<li><a class="color_animation" href="logout.php">LOGOUT ('
.
get_session
(
'first_name'
)
.
')</a></li>'
);
}
if
(
!
isset
(
$_SESSION
[
'isLogin'
]))
{
echo
(
'<li><a class="color_animation" href="#pricing">MENU</a></li>'
);
echo
(
'<li><a class="color_animation" href="login.php">LOGIN</a></li>'
);
echo
(
'<li><a class="color_animation" href="signup.php">SIGN UP</a></li>'
);
}
?>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</div>
<!-- /.container-fluid -->
</nav>
<div
class=
"container-fluid"
>
<h2>
Daftar Komentar
</h2>
<hr/>
<?php
$komen
=
mysql_query
(
"SELECT * FROM komentar"
);
while
(
$q
=
mysql_fetch_array
(
$komen
)){
?>
<div
class=
"col-md-6"
>
<div
class=
"thumbnail"
>
<label>
Nama:
<span>
<?php
echo
$q
[
'name'
]
?>
</span>
</label>
<br>
<label>
Email:
<span>
<?php
echo
$q
[
'email'
]
?>
</span>
</label>
<br>
<label>
Komentar :
</label>
<br>
<?php
echo
$q
[
'komentar'
]
?>
<br>
<br>
<div
align=
"center"
>
<a
onclick=
"if(confirm('Anda yakin ingin menghapus komentar ini?')){
location.href='hapus_komen.php?id=
<?php
echo
$q
[
'id'
]
?>
'
}"
class=
"btn btn-danger"
>
<span
class=
"glyphicon glyphicon-remove-sign"
>
</span>
Hapus
</a>
</div>
</div>
</div>
<?php
}
?>
</div>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment