This repository has been archived on 2020-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
nemubot-askweb/questions.php

13 lines
194 B
PHP
Raw Normal View History

2012-05-18 19:56:57 +00:00
<?php
if (isset ($_POST['send']))
{
$question=$_POST['question'];
$answer=$_POST['answer'];
echo 'La question est : ' . $question . "<br/>";
echo 'La réponse est : ' . $answer;
}
?>