FunctionProject/views/function-list.php

57 lines
2.7 KiB
PHP
Raw Normal View History

2019-08-28 14:16:47 +02:00
<!-- Config -->
<?php include("../php/config.php");?>
2019-08-16 12:05:56 +02:00
<!-- Header -->
<?php include("../incl/header.php");?>
2019-08-16 12:05:56 +02:00
<!-- Page Content -->
<div class="container">
<div class="row">
<h1>La liste des <span class="important">Fonctions</span> :</h1>
<table class="table table-bordered mt-5">
<thead>
<tr>
<th scope="col">Nom</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="./function-views/weatherRequest.php">Météo</a></td>
<td>Affiche la météo et l'heure local selon la ville.</td>
</tr>
<tr>
<td><a href="./function-views/randomNumber.php">Nombre aléatoire</a></td>
<td>Génère un nombre aléatoire entre un minimum inclus et un maximum inclus.</td>
</tr>
<tr>
<td><a href="./function-views/calculateAge.php">Quelle âge avez-vous ?</a></td>
<td>Calcule l'âge de quelqu'un selon la date de naissance.</td>
</tr>
<tr>
<td><a href="./function-views/convertTemperature.php">Conversion de Température</a></td>
<td>Convertit des Degré Celsius en Degré Fahrenheit et l'inverse aussi.</td>
</tr>
<tr>
<td><a href="./function-views/convertDistance.php">Conversion de Distance</a></td>
<td>Convertit la longueur (distance) avec les unités allant de picomètre au Téramètre.</td>
</tr>
2019-08-29 14:53:15 +02:00
<tr>
<td><a href="./function-views/filterStudents.php">Trie les prénoms par leur première lettre</a></td>
<td>Affiche uniquement les prénoms (qui sont dans la liste) qui commence par la lettre souhaitée.</td>
</tr>
2019-09-13 14:39:29 +02:00
<tr>
<td><a href="./function-views/randomQuote.php">Générateur de citation</a></td>
<td>Génère aléatoirement une citation ou un proverbe.</td>
</tr>
2019-09-13 21:56:36 +02:00
<tr>
<td><a href="./function-views/convertCurrency.php">Conversion de devise</a></td>
2019-09-13 21:56:36 +02:00
<td>Convertis des euros () dans une autre devise.</td>
</tr>
</tbody>
</table>
2019-08-16 12:05:56 +02:00
</div>
</div>
<!-- Footer -->
<?php include("../incl/footer.php");?>