-
Notifications
You must be signed in to change notification settings - Fork 0
/
epacte.php
121 lines (82 loc) · 2.9 KB
/
epacte.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
<?php
require('class/class.php');
require('config.php');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Calcul de l'épacte grégorienne | <?php echo SITE_TITLE; ?></title>
<meta name="description" content="Application en ligne pour calculer l'épacte grégorienne d'une année donnée">
<!-- Jquery 3.4.1-->
<script src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap 4.3.1 -->
<link href="css/bootstrap.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
<!-- CSS perso -->
<link href="css/style.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<?php include 'include/tarteaucitron.inc.php'; ?>
<!-- url canonical -->
<link rel="canonical" href="https://imerologio.boitasite.com/epacte.php"/>
</head>
<body>
<div class="container mt-4">
<header class="row">
<div class="col-md-12">
<a href="/index.php" title=" ">
<h1 class="text-center"><?php echo SITE_TITLE; ?></h1>
<p class="text-center"><?php echo SITE_SLOGAN; ?></p>
</a>
</div>
</header>
<section class="row">
<article class="col-md-9">
<h3>Calcul de l'épacte grégorienne</h3>
<h5>Comment ça marche ?</h5>
<p>- Indiquez une date supérieure à 1583, puis cliquez sur le bouton calculer.</p>
<form method="post" action="epacte.php" class="form-inline justify-content-center">
<div class="form-group">
<input type="text" name="annee" class="form-control m-2" id="inputYear" placeholder="Indiquez une année">
</div>
<button type="submit" class="btn btn-outline-secondary">Trouver !</button>
</form>
<?php
if (isset($_POST['annee']))
{
if ($_POST['annee'] > 1582)
{
$gregorian = new gregorians;
$gregorian->year = $_POST['annee'];
$epacte = $gregorian->Epacte($gregorian->year);
// Si Épacte = 25 et que le nombre d'or N = (Année % 19) > 10, alors Épacte = 26.<br />
if (($epacte == 25) and ($gregorian->year % 19 > 10))
{
$epacte = 26;
}
else
{
echo "<p class='alert alert-success'>L'épacte de ".$gregorian->year." est ".$epacte ."</strong></p>";
}
}
else
{
echo "<p class='alert alert-warning'>La date entrée n'est pas bonne !</strong></p>";
}
}
?>
</article>
<aside class="col-md-3">
<nav><?php include('include/aside.php');?></nav>
</aside>
</section>
<footer class="row">
<?php include('include/footer.php'); ?>
</footer>
</div>
<!-- code piwik pour les stats -->
<?php include('include/piwik.php'); ?>
</body>
</html>