Code : Tout sélectionner
<div class="container">
<table class="styled-table">
<thead>
<tr>
<th>Nom</th>
<th>Prénom</th>
<th>Téléphone</th>
<th>Mail</th>
<th>Adresse</th>
<th>Modifier</th>
<th></th>
</tr>
</thead>
<tbody>
<?php foreach ($clients as $client): ?>
<tr>
<td><?= $_SESSION['nom'] = $client['nom'] ?></td>
<td><?= $_SESSION['prenom'] = $client['prenom'] ?></td>
<td><?= $_SESSION['phone'] = $client['phone'] ?></td>
<td><?= $_SESSION['mail'] = $client['mail'] ?></td>
<td><?= $_SESSION['adresse'] = $client['adresse'] ?></td>
<td><a href="demo.php?page=saisir&menu=modifier" name="modifier">Modifier</a></td>
<td><input type="hidden" name ="client_id" value="<?= $_SESSION['id'] = $client['id'] ?>" ></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>