Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
RestoranPondokEdo
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
Mei Romauli Sagala
RestoranPondokEdo
Commits
a98fadb6
Commit
a98fadb6
authored
7 years ago
by
Roy Junedi Simamora
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Penambahan Pengolahan komentar pada admin
parent
42f6a774
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
54 additions
and
11 deletions
+54
-11
cek_comment.php
cek_comment.php
+14
-11
daftar_komen.php
daftar_komen.php
+32
-0
hapus_komen.php
hapus_komen.php
+8
-0
No files found.
cek_comment.php
View file @
a98fadb6
<?php
<?php
include
(
'koneksi.php'
);
if
(
isset
(
$_POST
[
'kirim'
])){
include
(
'koneksi.php'
);
include
(
'common/header.php'
);
if
(
isset
(
$_POST
[
'kirim'
]))
{
$nama
=
$_POST
[
'name'
];
$nama
=
$_POST
[
'name'
];
$hp
=
$_POST
[
'phone'
];
$hp
=
$_POST
[
'phone'
];
$email
=
$_POST
[
'email'
];
$email
=
$_POST
[
'email'
];
$comment
=
$_POST
[
'comment'
];
$comment
=
$_POST
[
'comment'
];
}
}
$input
=
mysql_query
(
"INSERT INTO komentar VALUES('','
$nama
','
$comment
','
$email
','
$hp
')"
)
or
die
(
mysql_error
());
$input
=
mysql_query
(
"INSERT INTO komentar VALUES('','
$nama
','
$comment
','
$email
','
$hp
')"
)
or
die
(
mysql_error
());
if
(
$input
)
{
if
(
$input
){
header
(
'Location: form_comment.php'
);
echo
(
"<script> alert('Terimakasih atas ulasan anda')</script>"
);
}
else
{
echo
"<meta http-equiv='refresh' content='1 url=form_comment.php'>"
;
}
else
{
echo
'gagal mengirimkan komentar'
;
echo
'gagal mengirimkan komentar'
;
header
(
"location:form_komentar.php"
);
header
(
"location:form_comment.php"
);
}
}
include
'common/footer.php'
;
?>
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
daftar_komen.php
0 → 100644
View file @
a98fadb6
<?php
require
'koneksi.php'
;
include
'common/header.php'
;
?>
<div
class=
"container-fluid"
>
<h2>
Daftar Feedback
</h2>
<hr/>
<?php
$komen
=
mysql_query
(
'SELECT * FROM komentar'
);
while
(
$q
=
mysql_fetch_array
(
$komen
)){
?>
<div
class=
'col-md-4'
>
<div
class=
"thumbnail"
>
<label>
Nama :
<span>
<?php
echo
$q
[
'nama'
];
?>
</span>
</label>
<br/>
<label>
<span>
<?php
echo
$q
[
'email'
]
?>
</span>
</label><br/>
<label>
Komentar :
</label>
<br/>
<?php
echo
$q
[
'isi'
]
?>
<br/>
<div
align=
"center"
>
<a
onclick=
'if(confirm("Anda yakin ingin menghapus komentar ini")){
location.href= "hapus_komen.php?id=
<?php
echo
$q
[
'id_komentar'
]
?>
"}'
class=
"btn btn-danger"
>
<span
class=
"glyphicon glyphicon-remove"
></span>
Hapus
</a>
</div>
</div>
</div>
<?php
}
?>
</div>
<?php
include
'common/footer.php'
;
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
hapus_komen.php
0 → 100644
View file @
a98fadb6
<?php
include
'koneksi.php'
;
$id
=
$_GET
[
'id'
];
mysql_query
(
"delete from komentar where id_komentar = '
$id
' "
);
header
(
'Location: daftar_komen.php'
);
?>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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