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.

25 lines
692 B

<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
require_once('SqliteDb.php');
$db = new SqliteDb();
$Question1 = $db->querySingle('SELECT question FROM Correct');
?>
<form action="Correcteur.php" method="post">
<p><?php echo $Question1?> <br/> <input type="text" name="R1" /></p>
<p><input type="submit" value="Valider"></p>
</form>
</body>
</html>