-
Notifications
You must be signed in to change notification settings - Fork 2
/
vistos.php
179 lines (89 loc) · 3.51 KB
/
vistos.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
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Más Vistos | Enseñas</title>
<link rel="stylesheet" type="text/css" href="assets/css/commons.css" media="all">
<link rel="stylesheet" type="text/css" href="assets/css/mobile.css" media="only screen and (max-width: 599px) and (min-width: 120px)">
<link rel="stylesheet" type="text/css" href="assets/css/tablet.css" media="only screen and (max-width: 999px) and (min-width: 600px)">
<link rel="stylesheet" type="text/css" href="assets/css/desktop.css" media="only screen and (min-width: 1000px)">
<script src="assets/js/modernizr.js" type="text/javascript"></script>
<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="assets/css/ie.css">
<![endif]-->
</head>
<body>
<header>
<div class="container">
<div class="logo">
<h1>
<a href="/" accesskey="1">Enseñas</a>
</h1>
</div>
</div>
</header><!-- /header -->
<div class="content">
<div class="container">
<?php $archivo = "contador/masvistas.txt";?>
<section class="vistos col-7">
<div class="back-home">
<a class="btn btn-success" href="index.php" title="Regresar">
<i class="icon-regresar"></i>
<span>Regresar a la Página Principal</span>
</a>
</div>
<div class="ir-categorias">
<a class="btn btn-success" href="catalogo.php" title="Ir a Categorias">
<span>Ir a Categorías</span>
<i class="icon-ircategorias"></i>
</a>
</div>
<h2 class="title">Lo más popular</h2>
<table class="mas-vistos">
<thead>
<tr>
<th>#</th>
<th>Nombre</th>
<th>Reproducciones</th>
</tr>
</thead>
<tbody>
<?php
if (file_exists($archivo)){
$palabras = file($archivo);
$i=0;
$img = 1;
while($i<8) {
if(rtrim($palabras[$i+1]) > 0 ) {
$pal = str_replace("-","?",$palabras[$i]);
$pal = str_replace("ny","ñ",$pal);
$pal = str_replace("_"," ",$pal);
$pal = ucfirst(strtolower($pal));
echo "<tr>
<td><a href='control.php?palabra=".$palabras[$i]."&bandera=true'><img src='assets/css/img/visto".$img.".png' alt=''></a></td>
<td><a href='control.php?palabra=".$palabras[$i]."&bandera=true'>$pal</a></td>
<td>".$palabras[$i+1]."</td>
</tr>";
}
$img++;
$i+=2;
}
} else {
print "El archivo no existe.";
}
?>
</tbody>
</table>
</section>
</div>
</div>
<footer class="foot">
<div class="container">
<div class="txtc">
<p>2011 - 2019 <a href="http://www.marketingdelbueno.com/" target="_blank">Marketing del Bueno</a>.</p>
</div>
</div>
</footer>
</body>
</html>