25 lines
570 B
PHP
25 lines
570 B
PHP
<?php
|
|
$terminaisons = array(
|
|
"present" => array("e","es","e","ons","ez","ent"),
|
|
"futur" => array("erai","eras","era","erons","erez","eront"),
|
|
"imparfait" => array("ais","ais","ait","ions","iez","aient")
|
|
);
|
|
$pronoms=array("je","tu","il","nous","vous","ils");
|
|
if (isset($_POST['verbe'])) $verbe = $_POST['verbe'];
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
|
|
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
|
|
<title></title>
|
|
</head>
|
|
<body container>
|
|
|
|
</body>
|
|
</html>
|