Je viens de m'apercevoir que sur le formulaire pour enregistrer les Heuresinterim il m'affiche une page blanche et puis plus rien ...
Pas d'enregistrement j'ai repassé le code plusieurs fois mais sans trouvé l'erreur...

http://empl.ddns.net/saisirh.php

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
 
 
<?php
 
if (isset($_POST['Filtrer'])) {
 
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=fichier.csv");
header("Pragma: no-cache");
header("Expires: 0");
 
$cnx = new PDO('mysql:dbname=EMPL;host=localhost', 'root', 'xxxx');
 
$sth = $cnx->prepare('SELECT id, nom, agence ,datex, heures FROM Heuresinterim WHERE agence = :agence AND datex BETWEEN :datedebut AND DATE_ADD(:datefin, INTERVAL 1 DAY)');
$sth->execute(array(':agence'=>$_POST['agence'], ':datedebut'=>$_POST['datedebut'], ':datefin'=>$_POST['datefin']));
 
while ($row =  $sth->fetch(PDO::FETCH_ASSOC)) {
    echo implode(';', $row) . "\r\n";
}
exit();
}
 
//TOKEN
//On va vérifier :
//Si le jeton est présent dans la session et dans le formulaire
if(isset($_SESSION['token']) && isset($_SESSION['token_time']) && isset($_POST['token']))
{
	//Si le jeton de la session correspond à celui du formulaire
	if($_SESSION['token'] == $_POST['token'])
	{
		//On stocke le timestamp qu'il était il y a 15 minutes
		$timestamp_ancien = time() - (15*60);
		//Si le jeton n'est pas expiré
		if($_SESSION['token_time'] >= $timestamp_ancien)
		{
				//ON FAIT TOUS LES TRAITEMENTS ICI
				//...
				//...
 
		}
	}
}
//SINON, ON RAJOUTE DES ELSE ET DES MESSAGES D'ERREUR
 
 
// formulaire heures interim
 
if(isset($_POST['submit']))
{		
 
 
	if(!empty($_POST['nom']) AND !empty($_POST['datex']) AND !empty($_POST['heures']))
	{
 
		$bddmembre = $bdd->prepare("INSERT INTO Heuresinterim (nom,agence,datex,heures) VALUES(?,?,?,?)");//,NOW()
		$n1 = htmlspecialchars($_POST['nom']);
		$n3 = htmlspecialchars($_POST['agence']);
		$n4 = htmlspecialchars($_POST['datex']);
		$n5 = htmlspecialchars($_POST['heures']);
 
 
 
		$bddmembre->execute(array($n1,$n3,$n4,$n5));
				//echo "merci"
	}
	else
	{
		$erreur = script;//= "tous les champs doivent être complete";
	}
 
}
 
// menu deroulant pour agence interim
$listeagence = mysql_query("SELECT agence FROM Agence ");
while ($donneesagence = mysql_fetch_array($listeagence) )
 
?>
 
 
 
<html>
<header id="header" role="banner" class="main-header">
	<div class="header-inner">
 
		<div class="header-logo">
			<img src="raspbian.png" alt="empl" width="150" height="75">
		</div>
 
		<nav class="header-nav">
			<ul>
				<li><a href="index.php">Home</a></li>
				<li><a href="suite.php">Informations</a></li>
				<li><a href="co.php">Connection</a></li>
				<li><a href="saisirh.php">Saisir les heures</a></li>
 
 
			</ul>
 
		</nav>
 
	</div>
 
 
</header>
 
	<head>
 
 
 
 
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker" ).datepicker({
    	dateFormat: "yy-mm-dd"
    });
 
  });
  </script>
 
    <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker1" ).datepicker({
    	dateFormat: "yy-mm-dd"
    });
 
  });
  </script>
 
 
    <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#datepicker2" ).datepicker({
    	dateFormat: "yy-mm-dd"
    });
 
  });
  </script>
 
 
	<title> EMPL</title>
	<meta charset="UTF-8">
	<link rel="stylesheet" href="style.css" />
	</head>
<body>
<div id="bloc_page">
            <img src="raspbian.png" alt="Logo_page" title="Accueil" id="logo" width="340" height="140" /></div>
 
 
		<p>Bonjour: <?php echo $userinfo['login']; ?> 
		   Votre Statut: <?php echo $userinfo['statut']; ?>
		</p>
 
 
 
/////////////////////////////
/////////////////////////////
 
<table>
<align>
<form method="POST" action="">
 
<td align="right"
<p>Nom:  
<select name="nom" style="width:130px">
<?php
mysql_connect("localhost", "root", "xxxx");
mysql_select_db("EMPL");
 
$reponse = mysql_query("SELECT nomcomplet FROM interim");
while ($donnees =  mysql_fetch_array($reponse))
{
?>
<option value="<?php echo $donnees['nomcomplet'] ?>"><?php echo $donnees['nomcomplet'] ?></option>
   <?php
   }
   ?>
</select></p>
 
<p>Jour de mission:  
<input type="text" name="datex" id="datepicker" placeholder="Date mission" /></p>
 
<p>Nombres d'heures:  
<input type="text" name="heures" placeholder="ex: 5,5" /></p>
 
<p>Agence:  <select name="agence" style="width:130px">
<?php
mysql_connect("localhost", "root", "xxxxxx");
mysql_select_db("EMPL");
 
$reponse = mysql_query("SELECT agence FROM Agence");
while ($donnees =  mysql_fetch_array($reponse))
{
?>
<option value="<?php echo $donnees['agence'] ?>"><?php echo $donnees['agence'] ?></option>
   <?php
   }
   ?>
</select>
 
 
 
 
 
<input type="submit" name="submit" value="Valider"/><br>
 
</form>
</td>
</align>
</table>
/////////////////////////////
/////////////////////////////
<table>
<p>Filtrer par date:</p>
 
<form method="post" action"">
<br>
Du: <input type="text" name="datedebut" id="datepicker1"/> Au: <input type="text" id="datepicker2" name="datefin"/> Agence:  <select name="agence" style="width:130px">
<?php
mysql_connect("localhost", "root", "xxxxx");
mysql_select_db("EMPL");
 
$reponse = mysql_query("SELECT agence FROM Agence");
while ($donnees =  mysql_fetch_array($reponse))
{
?>
<option value="<?php echo $donnees['agence'] ?>"><?php echo $donnees['agence'] ?></option>
   <?php
   }
   ?>
</select>
 
 
   <input type="SUBMIT" name="Filtrer" value="FILTRER"/>
   </form>
 
</table>
 
/////////////////////////////
/////////////////////////////
 
<?php
try
{
	// On se connecte à MySQL
	$bdd = new PDO('mysql:host=localhost;dbname=EMPL;charset=utf8', 'root', 'starwars');
}
catch(Exception $e)
{
	// En cas d'erreur, on affiche un message et on arrête tout
        die('Erreur : '.$e->getMessage());
}
 
// Si tout va bien, on peut continuer
 
// On récupère tout le contenu de la table interim
$reponse = $bdd->query('SELECT * FROM Heuresinterim ORDER BY datex LIMIT 0, 10');
 
// On affiche chaque entrée une à une
while ($donnees = $reponse->fetch())
{
?>
    <p>
    <strong>Mission</strong> -> <?php echo $donnees['nom']; ?>, date intervention : <?php echo $donnees['datex']; ?> 
    Heures effectuées ce jour: <?php echo $donnees['heures']; ?> Heures, Agence d'interim : <?php echo $donnees['agence']; ?> <font color="red">/!\Attention/!\ supprimer définitivement la mission ?</font><a href="delete.php?id=<?php echo $donnees['id']; ?>">      OUI!</a>
   </p>
<?php
}
 
$reponse->closeCursor(); // Termine le traitement de la requête
 
?>
 
/////////////////////////////
/////////////////////////////
 
 
 
 
<?php
if(isset($erreur))
{
	echo "<script>alert(\"Erreur \")</script>"; //echo $erreur;
}
?>
 
</body>
 
<script type="text/javascript" src="header.js"></script>
</html>