Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
TB_Center
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
Andry F. Hutapea
TB_Center
Commits
1c2a6319
Commit
1c2a6319
authored
May 23, 2017
by
josua
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inprogres
parent
307f8020
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
0 deletions
+75
-0
koleksi.php
koleksi.php
+75
-0
No files found.
koleksi.php
0 → 100644
View file @
1c2a6319
<!DOCTYPE html>
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<link
href=
"css/metro-bootstrap.css"
rel=
"stylesheet"
>
<link
href=
"css/metro-bootstrap-responsive.css"
rel=
"stylesheet"
>
<link
href=
"css/iconFont.css"
rel=
"stylesheet"
>
<link
href=
"css/docs.css"
rel=
"stylesheet"
>
<!-- Load JavaScript Libraries -->
<script
src=
"js/jquery/jquery.min.js"
></script>
<script
src=
"js/jquery/jquery.widget.min.js"
></script>
<script
src=
"js/jquery/jquery.mousewheel.js"
></script>
<!-- Metro UI CSS JavaScript plugins -->
<script
src=
"js/load-metro.js"
></script>
<!-- Local JavaScript -->
<script
src=
"js/docs.js"
></script>
<style
type=
"text/css"
>
body
{
background
:
#efefef
;
font-family
:
arial
;}
#wrapshopcart
{
width
:
70%
;
margin
:
3em
auto
;
padding
:
30px
;
background
:
#fff
;
box-shadow
:
0
0
15px
#ddd
;}
h1
{
margin
:
0
;
padding
:
0
;
font-size
:
2.5em
;
font-weight
:
bold
;}
p
{
font-size
:
1em
;
margin
:
0
;}
table
{
margin
:
2em
0
0
0
;
border
:
1px
solid
#eee
;
width
:
100%
;
border-collapse
:
separate
;
border-spacing
:
0
;}
table
th
{
background
:
#fafafa
;
border
:
none
;
padding
:
20px
;
font-weight
:
normal
;
text-align
:
left
;}
table
td
{
background
:
#fff
;
border
:
none
;
padding
:
12px
20px
;
font-weight
:
normal
;
text-align
:
left
;
border-top
:
1px
solid
#eee
;}
table
tr
.total
td
{
font-size
:
1.5em
;}
.btnsubmit
{
display
:
inline-block
;
padding
:
10px
;
border
:
1px
solid
#ddd
;
background
:
#eee
;
color
:
#000
;
text-decoration
:
none
;
margin
:
2em
0
;}
form
{
margin
:
2em
0
0
0
;}
label
{
display
:
inline-block
;
width
:
12em
;}
input
[
type
=
text
]
{
border
:
1px
solid
#bbb
;
padding
:
10px
;
width
:
30em
;}
textarea
{
border
:
1px
solid
#bbb
;
padding
:
10px
;
width
:
30em
;
height
:
5em
;
vertical-align
:
text-top
;
margin
:
0.3em
0
0
0
;}
.submitbtn
{
font-size
:
1.5em
;
display
:
inline-block
;
padding
:
10px
;
border
:
1px
solid
#ddd
;
background
:
#eee
;
color
:
#000
;
text-decoration
:
none
;
margin
:
0.5em
0
0
8em
;}
;
</style>
<title>
Booking Paket
</title>
</head>
<body
class=
"metro"
>
<header
class=
"bg-darkCobalt"
data-load=
"atasan.php"
></header>
<?php
include_once
(
'config/koneksi.php'
);
open_page
(
'koleksi'
);
$database
=
new
mysqli
(
'localhost'
,
'root'
,
''
,
'tb silalahi'
);
$query
=
'SELECT * FROM koleksi'
;
$result_set
=
$database
->
query
(
$query
);
echo
(
'<table
border="1">'
);
echo
(
'<tr>'
);
echo
(
'<td>Id</td>'
);
echo
(
'<td>Nama</td>'
);
echo
(
'<td>Description</td>'
);
echo
(
'<td>Image</td>'
);
echo
(
'<td colspan="2">action</td>'
);
echo
(
'</tr>'
);
while
(
$row
=
$result_set
->
fetch_assoc
()){
echo
'<tr>'
;
echo
'<tr>'
;
echo
'<td>'
.
$row
[
'id'
]
.
'</td>'
;
//menampilkan data nis dari database
echo
'<td>'
.
$row
[
'nama'
]
.
'</td>'
;
//menampilkan data nama lengkap dari database
echo
'<td>'
.
$row
[
'desc'
]
.
'</td>'
;
//menampilkan data kelas dari database
echo
'<td><img src="image/"'
.
$row
[
'image'
]
.
'" alt="" style="width:204px;height:228px;"></td>'
;
//menampilkan gambar sesuai dengan url dari database
echo
(
'<td> <a href ="update.php?id='
.
$row
[
'id'
]
.
'"> Update</a> </td>'
);
echo
(
'<<td> <a href ="Delete.php?id='
.
$row
[
'id'
]
.
'">Delete</a> </td>'
);
}
echo
(
'</tr>'
);
echo
(
'</table>'
);
?>
</div>
<footer
class=
"dark"
data-load=
"bawahan.html"
></footer>
\ 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