Basic files
This commit is contained in:
commit
3afabdf8ac
2 changed files with 45 additions and 0 deletions
12
questions.php
Executable file
12
questions.php
Executable 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;
|
||||
}
|
||||
|
||||
?>
|
Reference in a new issue