45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<h1>
|
|
Sel ou Poivre ?
|
|
</h1>
|
|
<h4>
|
|
Veuillez sélectionner une catégorie
|
|
</h4>
|
|
<p class="center_item">
|
|
Pour commencer, veuiller choisir une catégorie de questions.
|
|
<br/>
|
|
La partie sera alors choisi aléatoirement parmi cette catégorie.
|
|
</p>
|
|
<div>
|
|
<form method="post" action ="index.php?page=game">
|
|
<fieldset>
|
|
<label for="cat">Catégories</label>
|
|
<select id="cat" name="cat">
|
|
<?php
|
|
//Inclusion des fichiers nécessaires
|
|
require_once './dao/cat_dao.php';
|
|
|
|
//CCreation de la DAO
|
|
$dao = new cat_dao();
|
|
|
|
//Récupération des données
|
|
$cats = $dao->getAllCat();
|
|
|
|
foreach ($cats as $row)
|
|
{
|
|
echo "<option>$row[0]</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
<br/>
|
|
<br/>
|
|
<button type="submit">Valider</button>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<br/>
|
|
<button type="button" onclick="javascript:navigate('index.php')">Retour à l'accueil</button>
|
|
|
|
</fieldset>
|
|
</form>
|
|
</div>
|