You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
453 B

<form method="post" class="frmnmbre" >
Choisir le nombre de questions à afficher <br/>
<input type="text" name="nmbre" id="nmbre" /><br/>
<p><input type="submit" ></p>
</form>
<?php
if(array_key_exists('nmbre',$_POST)){
$test =2;
$_SESSION['nbQuestions']=$_POST['nmbre'];
if($_POST['nmbre'] == 0) $_SESSION['nbQuestions']='10';
require ($rep.$vues['vuePrincipale']);
}