forked from if-itb/IF3110-01-Simple-Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
187 lines (167 loc) · 6 KB
/
index.php
File metadata and controls
187 lines (167 loc) · 6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<?php
$bulan=array("Januari","Februari","Maret","April","May","Juni","Juli","Agustus","September","Oktober","November","Desember");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="Deskripsi Blog">
<meta name="author" content="Judul Blog">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="omfgitsasalmon">
<meta name="twitter:title" content="Simple Blog">
<meta name="twitter:description" content="Deskripsi Blog">
<meta name="twitter:creator" content="Simple Blog">
<meta name="twitter:image:src" content="{{! TODO: ADD GRAVATAR URL HERE }}">
<meta property="og:type" content="article">
<meta property="og:title" content="Simple Blog">
<meta property="og:description" content="Deskripsi Blog">
<meta property="og:image" content="{{! TODO: ADD GRAVATAR URL HERE }}">
<meta property="og:site_name" content="Simple Blog">
<link rel="stylesheet" type="text/css" href="assets/css/screen.css" />
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Simple Blog</title>
</head>
<body class="default">
<div class="wrapper">
<nav class="nav">
<a style="border:none;" id="logo" href="index.php"><h1>Riady's Simple<span>-</span>Blog</h1></a>
<ul class="nav-primary">
<li><a href="new_post.html">+ Tambah Post</a></li>
</ul>
</nav>
<div id="home">
<div class="posts">
<nav class="art-list">
<ul class="art-list-body">
<?php
mysql_connect("localhost","root","");
$exist = @mysql_select_db("simpleblog");
if(!$exist){
$sql1 = 'CREATE DATABASE IF NOT EXISTS `simpleblog` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;';
$sql2 = 'USE `simpleblog`;';
$sql3 = 'CREATE TABLE IF NOT EXISTS `comment` (
`idpost` int(11) NOT NULL,
`idcomment` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(20) DEFAULT NULL,
`email` varchar(100) NOT NULL,
`tanggal` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`komentar` text,
PRIMARY KEY (`idcomment`),
KEY `idpost` (`idpost`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;';
$sql4 = 'CREATE TABLE IF NOT EXISTS `post` (
`idpost` int(11) NOT NULL AUTO_INCREMENT,
`judul` varchar(20) DEFAULT NULL,
`tanggal` date DEFAULT NULL,
`konten` text,
PRIMARY KEY (`idpost`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=50 ';
$sql5 = 'ALTER TABLE `comment`
ADD CONSTRAINT `comment_ibfk_1` FOREIGN KEY (`idpost`) REFERENCES `post` (`idpost`) ON DELETE CASCADE ON UPDATE CASCADE';
$sql6 = "INSERT INTO `post` (`judul`, `tanggal`, `konten`) VALUES
('Belum ada isinya', '2014-03-23', 'wah belum ada isinya')";
mysql_query($sql1);
mysql_query($sql2);
mysql_query($sql3);
mysql_query($sql4);
mysql_query($sql5);
mysql_query($sql6);
}
$query = "SELECT * FROM post";
$result = mysql_query($query);
$jumpost = mysql_numrows($result);
for($i = 0 ; $i < $jumpost ; $i++){
?>
<li class="art-list-item">
<div class="art-list-item-title-and-time">
<h2 class="art-list-title"><a href="post.php?postid=<?php echo mysql_result($result,$i,"idpost");?>">
<?php
$judul = mysql_result($result,$i,"judul");
if(strlen($judul)<=15){
echo htmlentities($judul);
}
else{
echo htmlentities(substr($judul,0,15))."...";
}
?>
</a></h2>
<div class="art-list-time">
<?php
$tanggal = mysql_result($result,$i,"tanggal");
$tgl = substr($tanggal,8,2);
$bln = substr($tanggal,5,2);
$tahun = substr($tanggal,0,4);
echo $tgl." ".$bulan[$bln-1]." ".$tahun;
?>
</div>
<div class="art-list-time"><span style="color:#F40034;">✭</span> Featured</div>
</div>
<p>
<?php
$konten = mysql_result($result,$i,"konten");
if(strlen($konten)<=100){
echo htmlentities($konten);
}
else{
echo htmlentities(substr($konten,0,100));
echo '...<br><a href ="post.php?postid='.mysql_result($result,$i,"idpost").'">See more</a>';
}
?>
</p>
<p>
<a href="
<?php
$pid = mysql_result($result,$i,"idpost");
echo "edit_post.php?postid=".$pid;
?>
">Edit</a> | <a href="" onclick="confirmfunction<?php echo $pid;?>()">Hapus</a>
</p>
<?php
echo '<script>
function confirmfunction'.$pid.'(){
if(confirm("Apakah Anda yakin menghapus post ini?")){
window.location="delete_post.php?pid='.$pid.'";
}
}
</script>
';
?>
</li>
<?php
}
?>
</ul>
</nav>
</div>
</div>
<footer class="footer">
<div class="back-to-top"><a href="">Back to top</a></div>
<!-- <div class="footer-nav"><p></p></div> -->
<div class="psi">Ψ</div>
<aside class="offsite-links">
Riady 13512024
</aside>
</footer>
</div>
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/fittext.js"></script>
<script type="text/javascript" src="assets/js/app.js"></script>
<script type="text/javascript" src="assets/js/respond.min.js"></script>
<script type="text/javascript">
var ga_ua = '{{! TODO: ADD GOOGLE ANALYTICS UA HERE }}';
(function(g,h,o,s,t,z){g.GoogleAnalyticsObject=s;g[s]||(g[s]=
function(){(g[s].q=g[s].q||[]).push(arguments)});g[s].s=+new Date;
t=h.createElement(o);z=h.getElementsByTagName(o)[0];
t.src='//www.google-analytics.com/analytics.js';
z.parentNode.insertBefore(t,z)}(window,document,'script','ga'));
ga('create',ga_ua);ga('send','pageview');
</script>
</body>
</html>