New thamnks.php
This commit is contained in:
parent
fd6e0f6221
commit
dea8d71c01
@ -111,9 +111,18 @@ cette adresse email.\n\n"
|
|||||||
echo ("Error with the email");
|
echo ("Error with the email");
|
||||||
//*/
|
//*/
|
||||||
}
|
}
|
||||||
header("Location: ./thanks.html?id=" . quest->getId());
|
header("Location: ./thanks.php?id=" . $quest->getId());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
header("Location: ./");
|
header("Location: ./");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf8" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
</body>
|
||||||
|
</html>
|
48
thanks.html
48
thanks.html
@ -1,48 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
|
|
||||||
<?php
|
|
||||||
include("Question.class.php");
|
|
||||||
include("QuestionsFile.class.php");
|
|
||||||
|
|
||||||
$id = $_GET['id'];
|
|
||||||
$file = new QuestionsFile("questions.xml");
|
|
||||||
$question = $file->get_question($id);
|
|
||||||
?>
|
|
||||||
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf8" />
|
|
||||||
<link rel="Stylesheet" href="style.css" />
|
|
||||||
<title>Every Questions (BETA)</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<div id="main_title">
|
|
||||||
<a href="http://www.h2g2.com" target="_blank">
|
|
||||||
<img src="marvin-robot_normal.png" alt="" id="banner"/>
|
|
||||||
</a>
|
|
||||||
<h1>Nemubot Questions (BETA)</h1>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<article id="validate">
|
|
||||||
<h2>Merci de votre participation!</h2>
|
|
||||||
<p>
|
|
||||||
Votre question a bien été ajoutée à la liste.<br/>
|
|
||||||
Un email vous a été envoyé pour que vous confirmiez que
|
|
||||||
Vous êtes bien l'auteur de la question.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Rappels de la question :<br/>
|
|
||||||
<?php $question->print_test(); ?>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
Vous pouvez proposer de nouvelles questions en cliquant
|
|
||||||
sur le lien ci-dessous.<br/>
|
|
||||||
<a href="index.html">Proposer une nouvelle question</a>
|
|
||||||
</p>
|
|
||||||
</article>
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Reference in New Issue
Block a user