Fix HTML balises order; add basic checks

This commit is contained in:
Némunaire 2012-05-18 22:50:06 +02:00
parent 3afabdf8ac
commit ef33e787a4
2 changed files with 36 additions and 30 deletions

View File

@ -4,9 +4,9 @@
<meta charset="utf8" /> <meta charset="utf8" />
<link rel="Stylesheet" href="style.css" /> <link rel="Stylesheet" href="style.css" />
<title>Every Questions</title> <title>Every Questions</title>
</head>
<body> <body>
<header> <header>
<div id="main_title"> <div id="main_title">
<h1>Nemubot Questions</h1> <h1>Nemubot Questions</h1>
@ -29,5 +29,4 @@
</form> </form>
</body> </body>
</html>
</head>

View File

@ -1,6 +1,12 @@
<?php <?php
if (isset ($_POST['send'])) if (isset ($_POST['send']))
{
if (empty($_POST['question']) || empty($_POST['answer']))
{
echo "Il manque la question ou la réponse !";
}
else
{ {
$question = $_POST['question']; $question = $_POST['question'];
$answer = $_POST['answer']; $answer = $_POST['answer'];
@ -8,5 +14,6 @@ if (isset ($_POST['send']))
echo 'La question est : ' . $question . "<br/>"; echo 'La question est : ' . $question . "<br/>";
echo 'La réponse est : ' . $answer; echo 'La réponse est : ' . $answer;
} }
}
?> ?>