-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopmanga.php
141 lines (127 loc) · 4.84 KB
/
topmanga.php
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
<?php
session_start();
include('simple_html_dom.php');
$html = file_get_html("https://myanimelist.net/topmanga.php?type=favorite");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Top Manga All The Time</title>
<script>
</script>
<style>
body {
margin: 0 px;
background-color: black;
}
.card {
margin: 0 auto;
/* Added */
float: none;
/* Added */
margin-bottom: 10px;
/* Added */
}
.card-body>img {
max-height: 40%;
max-width: 40%;
}
#active-page {
font-weight: bold;
}
.card-text {
/* background-color: rgba(245, 245, 245, 1); */
/* opacity: .4; */
color: white;
}
.numbering {
color: white;
}
.card-img {
float: none;
}
.manga-table {
float: left;
text-align: center;
}
.card-title {
float: right;
text-align: left;
}
tr td th {
border: none;
}
.lazyload {
opacity: 0;
}
.card-body {
margin: 0 auto;
padding-top: 0;
color: white;
text-align: left;
}
</style>
</head>
<body>
<?php
if (isset($_SESSION["loggedin"]) && $_SESSION["loggedin"] === true) {
require_once('navbar/navlogin');
}else{
require_once('navbar/navbar');
}
?>
<h3 style="color:white;" class="text-center mt-3">List Top Manga All The World, All The Time</h3>
<!-- tabel untuk data komik -->
<div style="margin: 2em; padding: 15%; padding-top: 0;">
<table class="table table-striped table-borderless" style="border-bottom-style: none;">
<thead>
<tr style="background-color: cyan; text-align: center;">
<th scope="col" style="width: 100px;">#</th>
<th scope="col">List Best Manga All The Time from myAnimeList</th>
</tr>
</thead>
<tbody>
<?php
$count = 0;
foreach ($html->find('td.title') as $element) {
$element = preg_replace("/<a\s(.+?)>(.+?)<\/a>/is", "<h5>$2</h5>", $element);
$element = preg_replace("/<br\s(.+?)>(.+?)/is", "", $element);
preg_match('@src="([^"]+)"@', $element, $match);
$src = array_pop($match);
if ($count != 0) {
?>
<tr>
<th class="numbering" scope="row" style="text-align: center;"><?php echo $count; ?></th>
<td class="manga-table">
<div class="card-transparent" style="max-width: 540px;opacity: 0px; margin: 0 auto;">
<div class="row no-gutters">
<div class="col-md-4" style="max-width: 50px;">
<img src="<?php echo $src; ?>" class="card-img" style="width: auto; float: left;">
</div>
<div class="col-md-8">
<div class="card-body">
<?php echo strip_tags($element, "<div>") ?>
<p class="card-text"></p>
</div>
</div>
</div>
</div>
</td>
</tr>
<?php
} else {
}
$count++;
}
?>
</tbody>
</table>
</div>
</body>
</html>