-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
76 lines (61 loc) · 2.8 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP-moderno, curso em video <a href="https://youtube.com/playlist?list=PLHz_AreHm4dlFPrCXCmd5g92860x_Pbr_&si=5AJfj8OuyTrydVKF" target="_blank" rel="noopener noreferrer">click aqui</a></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="ccstyle/index.css">
<link rel="stylesheet" type="text/css" href="ccstyle/menutop.css">
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.php" class="text">🤖PHP modero 🐘</a>
<a href="https://youtube.com/playlist?list=PLHz_AreHm4dlFPrCXCmd5g92860x_Pbr_&si=5AJfj8OuyTrydVKF" target="_blank" rel="noopener noreferrer">Curso em Video</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<section class="section">
<h1>Lista de Exercicios</h1>
<div class="container">
<!-- PHP-scope -->
📁
<?php
$d = dir(".");
echo "<ul>";
while (false !== ($entry = $d->read())) {
if ($entry[0] == "e" && $entry[1] == "x") {
/*Eng: print | Pt: imprima*/
echo "📁<li style='color:blue ;'><a href='{$entry}'>{$entry}</a></li>";
} // else {
// /*Eng: dont print | Pt: não imprima*/
// }
}
echo "</ul>";
$d->close();
?>
</div>
<!-- Eng: return to previous page || Pt: voltar a pagina anterior -->
<!-- <p><a href="javascript:history.go(-1)">voltar para pagina anterior</a></p> -->
</section>
<!-- github repository -->
<section class="section">
<div class="container">
<a href="https://github.com/gustavoguanabara/php-moderno" target="_blank" rel="noopener noreferrer">Resitorio de phpmoderno</a>
</div>
</section>
<!-- link to curso em video -->
<section class="section">
<div class="container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/TfsO0BGvGn0?si=Js54HUIviEq8o9Oa" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</section>
<!-- js scripts -->
<script src="./js/topnav.js"></script>
<?php require_once("./view/footer.php"); ?>
</body>
</html>