Basic files

This commit is contained in:
Bertrand 2012-05-18 21:56:57 +02:00
commit 3afabdf8ac
2 changed files with 45 additions and 0 deletions

12
questions.php Executable file
View file

@ -0,0 +1,12 @@
<?php
if (isset ($_POST['send']))
{
$question=$_POST['question'];
$answer=$_POST['answer'];
echo 'La question est : ' . $question . "<br/>";
echo 'La réponse est : ' . $answer;
}
?>