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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
| <!DOCTYPE html>
<html>
<body>
<head>
<meta charset="UTF-8">
<title>CodePen - Minimal Flat Table Design</title>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></script>
<link rel="stylesheet" type="text/css" href="animate.css" media="screen" />
<style type="text/css">
html {
height: 100%;
width: 100%;
}
body {
font-family: 'PT Sans', Tahoma, Arial, serif;
line-height: 13px
}
</style>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="buttons.css"/>
<script type='text/javascript'>
// On attend que la page soit chargée
jQuery(document).ready(function()
{
// On cache la zone de texte
jQuery('#sForm').hide();
// toggle() lorsque le lien avec l'ID #toggler est cliqué
jQuery('.button.plusTd').click(function()
{
jQuery('#sForm').toggle(400);
return false;
});
});
/* ]]> */
// On attend que la page soit chargée
jQuery(document).ready(function()
{
// On cache la zone de texte
jQuery('#sForm').hide();
// toggle() lorsque le lien avec l'ID #toggler est cliqué
jQuery('.button.plusTd2').click(function()
{
jQuery('#sForm').toggle(400);
return false;
});
});
/* ]]> */
/* La le texte est en brut mais l'interet serait
de mettre un iD a ce <tr> et de copier le
contenu grace à clone();
http://api.jquery.com/clone/ */
jQuery(document).ready(function()
{
$('.plusTd1').on('click',function() {
$('#sFormadd').after('<tr><td><center><input type="text" name="index" id="text" size="15" value="" maxlength="20"></center> </td><td><input type="text" name="nom" size="15" id="text0" value="" class="remplit" maxlength="20"><br></td><td><input type="text" name="id" size="15" id="text1" value="" class="remplit" maxlength="20"> </td><td><input type="text" size="15" name="type" id="text2" value="" class="remplit" maxlength="20"><br></td><td><input type="text" name="table" size="15" id="text3" value="" class="remplit" maxlength="20"> </td></tr>');
});
});
/* ]]> */
</script>
</head>
<?php
/* ------------------ CASE A COCHER ------------------ */
// connexion
$mysql_user="admin";
$mysql_password="admin";
$reqco = mysql_connect("localhost",$mysql_user,$mysql_password);
//sélection de la BDD
$reqse = mysql_select_db("tp_arexx",$reqco);
//résupération des informations
$reqt=mysql_query("SELECT * FROM tp_arexx_capteurs",$reqco);
if ( $reqco == NULL )
{
echo " Cet agent n'a participé à aucune session.";
}
/* ------------------ CASE A COCHER ------------------ */
/* ------------------ CASE A COCHER ------------------ */
if(!empty($_POST['champ'])) {
// selection des noms de tables
$sql = 'select Arexx_Table FROM tp_arexx_capteurs WHERE Arexx_index in('.implode(',',$_POST['champ']).')';
$req = mysql_query($sql);
while($d = mysql_fetch_assoc($req)) {
$sql = 'DROP TABLE '.$d['Arexx_Table'];
$req = mysql_query($sql);
}
mysql_free_result($req);
// suppression des lignes
$delete = 'DELETE FROM tp_arexx_capteurs WHERE Arexx_index in('.implode(',',$_POST['champ']).')';
$req1 = mysql_query($delete);
}
?>
<script type="text/javascript">
function generate(layout) {
var n = noty({
animation: {
open: 'animated zoomIn', // Animate.css class names
close: 'animated zoomOut', // Animate.css class names
},
text : 'Supression de X élements et de leurs tables liées.<br>Opérations terminées correctements.</br>',
type : 'success',
dismissQueue: true,
layout : layout,
theme : 'relax',
template: '<div class="noty_message"><span class="noty_text"></span><div class="noty_close"></div></div>',
}).setTimeout(3800).close();
console.log('html: ' + n.options.id);
}
function generateAll() {
generate('center');
}
$(document).ready(function () {
generateAll();
});
</script>
<?php
/* ------------------ A partir d'ici table : alimentaire Lecture ------------------ */
$reponse = mysql_query("SELECT * FROM tp_arexx_capteurs"); // Requête SQL
?>
<form method="POST" id="form" name="form">
<div class="top-shadow">
<table class="flatTable" table border="0" CELLSPACING="0" >
<tr class="titleTr">
<td class="titleTd">Liste des capteurs</td>
<td colspan="4"></td>
<td class="plusTd button"></td>
<td class="plusTd3 button"></td>
</div>
</tr>
<tr class="headingTr">
<td><center>Index du capteur</center></td>
<td><center>Nom du capteur</center></td>
<td><center>Identifiant du capteur</center></td>
<td><center>Type du capteur</center></td>
<td><center>Table correspondant au capteur</center></td>
<td><center>Supprimer le capteur</center></td>
<td><center>Edition </center></td>
<td></td>
</tr>
<?php
//Affichage des informations
while ($tab_contenu=mysql_fetch_array($reponse)){
?>
<tr>
<td><center><?php echo $tab_contenu['Arexx_index']; ?></center></td>
<td><center><?php echo $tab_contenu['Arexx_Name']; ?></center></td>
<td><center><?php echo $tab_contenu['Arexx_Id']; ?></center></td>
<td><center><?php echo $tab_contenu['Arexx_Type']; ?></center></td>
<td><center><?php echo $tab_contenu['Arexx_Table']; ?></center></td>
<section title=".squaredFour">
<!-- .squaredFour -->
<div class="squaredFour">
<td style="text-align:center;width:20%;"><input type="checkbox" id="squaredFour" name="champ[]" value="<?php echo $tab_contenu['Arexx_index']; ?>" /></td>
<label for="squaredFour"></label>
</div>
<!-- end .squaredFour -->
</section>
<td class="controlTd">
<div class="settingsIcons">
<span class="settingsIcon"><img src="http://i.imgur.com/nnzONel.png" alt="X" /></span>
<span class="settingsIcon"><img src="http://i.imgur.com/UAdSFIg.png" alt="placeholder icon" /></span>
<div class="settingsIcon"><img src="http://i.imgur.com/UAdSFIg.png" alt="placeholder icon" /></div>
</div>
</td>
</tr>
<?php
}
?>
</table>
<form method="POST" action="Create.php" name="form">
<div id="sForm" class="sForm sFormPadding">
<table class="flatTable" table border="0" CELLSPACING="0" >
<tr class="titleTr">
<td class="titleTd">Ajouter un capteur</td>
<td colspan="4"></td>
<td class="plusTd2 button"></td>
<td class="plusTd4 button"></td>
<td class="plusTd1 button"></td>
</tr>
<tr class="headingTr">
<td><center> Index du capteur </center></td>
<td><center> Nom du capteur </center></td>
<td><center> Identifiant du capteur </center></td>
<td><center> Type du capteur </center></td>
<td><center> Table correspondant au capteur </center></td>
<td></td>
</tr>
<div id="sFormadd" class="sForm sFormPadding">
<tr>
<td><center><input type="text" name="index" id="text" size="15" value="" maxlength="20"></center> </td>
<td><input type="text" name="nom" size="15" id="text0" value="" class="remplit" maxlength="20"><br></td>
<td><input type="text" name="id" size="15" id="text1" value="" class="remplit" maxlength="20"> </td>
<td><input type="text" size="15" name="type" id="text2" value="" class="remplit" maxlength="20"><br></td>
<td><input type="text" name="table" size="15" id="text3" value="" class="remplit" maxlength="20"> </td>
</tr>
</form>
<?php
$reponse1 = mysql_query("SELECT * FROM tp_arexx_capteurs");
//Affichage des informations
while ($tab_contenu=mysql_fetch_array($reponse1)){
include 'Create.php';
}
?>
</div>
</table>
<div class="bottom-shadow"></div>
</div>
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900' rel='stylesheet' type='text/css'>
<script src='http://codepen.io/assets/libs/fullpage/jquery.js'></script>
<script src="js/index.js"></script>
</ul>
</form>
</div>
<script src="jquery-1.7.2.min.js"></script>
<!-- noty -->
<link rel="stylesheet" type="text/css" href="font-awesome/css/font-awesome.min.css" media="screen" />
<script type="text/javascript" src="js/noty/packaged/jquery.noty.packaged.min.js"></script>
<script type="text/javascript">
$('.button.plusTd3').click(function(){
if( $('input[id="squaredFour"]').is(':checked') ){
function generate(layout) {
var n = noty({
animation: {
open: 'animated zoomIn', // Animate.css class names
close: 'animated zoomOut', // Animate.css class names
},
text : 'Voulez vous vraimmant continuer ?',
type : 'alert',
dismissQueue: true,
layout : layout,
theme : 'relax',
buttons : [
{addClass: 'btn btn-primary', text: 'Oui, supprimer', onClick: function ($noty) {
$noty.close();
document.forms["form"].submit();
}
},
{addClass: 'btn btn-danger', text: 'Annuler', onClick: function ($noty) {
$noty.close();
noty({dismissQueue: true, force: true, layout: layout, theme: 'relax', text: 'Vous avez annuler l\'opération', type: 'error'}).setTimeout(3600).close();
}
}
]
});
console.log('html: ' + n.options.id);
}
function generateAll() {
generate('center');
}
$(document).ready(function () {
generateAll();
});
}
else {
noty({text: 'Vous ne pouvez pas éffectuer cette opération.<br> Sélectionnez au moins une ligne.</br>', type: 'error', theme: 'relax', layout: 'center',}).setTimeout(3800).close();
}
});
</script>
<script type="text/javascript">
$('.button.plusTd4').click(function(){
if($(".remplit").val()==""){
noty({text: 'Vous ne pouvez pas éffectuer cette opération.<br> Seule la case "Index du capteur" peut rester vide.</br>', type: 'error', theme: 'relax', layout: 'center',}).setTimeout(3800).close();
}
else {
function generate(layout) {
var n = noty({
animation: {
open: 'animated zoomIn', // Animate.css class names
close: 'animated zoomOut', // Animate.css class names
},
text : 'Voulez vous vraimmant continuer ?',
type : 'alert',
dismissQueue: true,
layout : layout,
theme : 'relax',
buttons : [
{addClass: 'btn btn-primary', text: 'Oui, ajouter', onClick: function ($noty) {
$noty.close();
document.forms["form"].submit();
}
},
{addClass: 'btn btn-danger', text: 'Annuler', onClick: function ($noty) {
$noty.close();
noty({dismissQueue: true, force: true, layout: layout, theme: 'relax', text: 'Vous avez annuler l\'opération.', type: 'error', theme: 'relax', layout: 'center',}).setTimeout(3500).close();
}
}
]
});
console.log('html: ' + n.options.id);
}
function generateAll() {
generate('center');
}
$(document).ready(function () {
generateAll();
});
}
});
</script>
<script type="text/javascript">
$('.controlTd').click(function(){
function generate(layout) {
var n = noty({
animation: {
open: 'animated zoomIn', // Animate.css class names
close: 'animated zoomOut', // Animate.css class names
},
type : 'warning',
dismissQueue: true,
layout : layout,
theme : 'relax',
text: 'Attention ! <br> Les éléments de cette ligne sont modifiable.</br>',
timeout: 3800,
});
console.log('html: ' + n.options.id);
}
function generateAll() {
generate('center');
}
$(document).ready(function () {
generateAll();
});
});
</script>
</body>
</html> |
Partager