Voici votre URL de partage https://sharemycode.io/c/3c5eca7 (Cliquer pour copier) (Copié)
<?php require_once('../controller/vehiculeController.php');?>
<?php require_once('./header.php');?>
<table class="container table mt-4">
<thead>
<tr>
<th scope="col">id_agence</th>
<th scope="col">id_vehicule</th>
<th scope="col">Titre</th>
<th scope="col">Marque</th>
<th scope="col">Modele</th>
<th scope="col">Description</th>
<th scope="col">Photo</th>
<th scope="col">Prix journalier</th>
<th scope="col">DELETE</th>
</tr>
</thead>
<?php foreach($arrayVehicule as $values): ?>
<tbody>
<tr>
<td><?= $values['id_agence']; ?></td>
<td><?= $values['id_vehicule']; ?></td>
<td><?= $values['titre']; ?></td>
<td><?= $values['marque']; ?></td>
<td><?= $values['modele']; ?></td>
<td><?= $values['prix_journalier']; ?></td>
<td><?= $values['description']; ?></td>
<td><img src=" <?= $values['photo'] ?>" width="200"></td>
<td><a class="btn btn-danger" href="?actions=delete&id=<?= $values['id_vehicule']; ?>">DELETE</a>
<td><a class="btn btn-primary" href="?actions=details&id=<?= $values['id_vehicule']; ?>">DETAILS</a>
<td><a class="btn btn-dark" href="?actions=details&id=<?= $values['id_vehicule']; ?>">UPDATE</a>
</tr>
</tbody>
<?php endforeach; ?>
</table>
<form method="POST" class="container mt-4">
<input class="form-control" type="text" placeholder="titre" name="titre">
<input class="form-control" type="text" placeholder="marque" name="marque">
<input class="form-control" type="text" placeholder="modele" name="modele">
<input class="form-control" type="text" placeholder="prix_journalier" name="prix_journalier">
<input class="form-control" type="text" placeholder="description" name="description">
<input class="form-control" type="text" placeholder="photo" name="photo">
<select name="<?= $values['id_agence']; ?>">
<?php foreach($arrayAgences as $values): ?>
<option value="<?= $values['id_agence']; ?>"><?= $values['ville']; ?></option>
<?php endforeach; ?>
</select>
<button class="form-control btn btn-dark" name="valider_vehicule">Valider</button>
</form>
<?php require_once('./footer.php');?>
Informations
Cet extrait a été créé le 25 janv. 2023 à 11:34:36
Cet extrait expire le 24 févr. 2023 à 11:34:36
Langage : php
Link
Voici votre URL de partage : https://sharemycode.io/c/3c5eca7 Copié
Demander la suppression