You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
337 B
9 lines
337 B
<?php
|
|
$bdd = new PDO('mysql:host=localhost;dbname=ticket;charset:utf8', 'root', '');
|
|
|
|
$update = $bdd->query("UPDATE pannes SET traitement = " .$_POST['is_checked'] ." WHERE ID = " .$_POST['id']);
|
|
|
|
$traitement = $bdd->query("SELECT traitement FROM pannes WHERE ID=" .$_POST['id']);
|
|
$res = $traitement->fetch()['traitement'];
|
|
echo $res;
|
|
?>
|