Bonjour,
Voici un script pour l'affichage d'un tableau qui provient d'une BDD. Comment puis je récupérer les données correspondantes à la ligne que l'utilisateur sélectionnera (lorsqu'il cliquera dessus ?).
Merci d'avance pour votre aide !
Modifié par gpazzi (02 Jun 2019 - 19:47)
Voici un script pour l'affichage d'un tableau qui provient d'une BDD. Comment puis je récupérer les données correspondantes à la ligne que l'utilisateur sélectionnera (lorsqu'il cliquera dessus ?).
Merci d'avance pour votre aide !
<body>
<h1>LISTE DES RENDEZ-VOUS À PRENDRE !</h1>
<table class="data-table">
<caption class="title">Clients en attente de vos appels</caption>
<thead>
<br/>
<tr>
<th>NO</th>
<th>RENDEZ-VOUS</th>
<th>HEURE</th>
<th>NOM</th>
<th>PRÉNOM</th>
<th>ADRESSE</th>
<th>BLOC OU ÉTAGE</th>
<th>VILLE</th>
<th>SOIN</th>
<th>OPTION</th>
</tr>
</thead>
<tbody>
<?php
$no = 1;
while ($row = mysqli_fetch_array($query))
{
$amount = $row['CustomEvaluat'] == 0 ? '' : number_format($row['CustomEvaluat']);
echo '<tr>
<td>'.$no.'</td>
<td>'.$row['Datetimepicker1'].'</td>
<td>'.$row['Datetimepicker2'].'</td>
<td>'.$row['CustomName'].'</td>
<td>'.$row['CustomLastName'].'</td>
<td>'.$row['CustomStreet1'].'</td>
<td>'.$row['CustomStreet2'].'</td>
<td>'.$row['CustomCity'].'</td>
<td>'.$row['OrderService1'].'</td>
<td>'.$row['OrderService2'].'</td>
</tr>';
$no++;
}?>
</tbody>
<tfoot>
<tr> </tr>
</tfoot>
</table>
</body>
<div class="margeright">
<a href="../diva_inscrip.html">Retour</a>
<a href="../envoyercourriel.php">Envoyer mail</a>
</div>
Modifié par gpazzi (02 Jun 2019 - 19:47)