Bonjour à tous et à toutes.
J'ai rencontre un problème au niveau d’affichage de mes image. Je suis encore novice en
voilà comment l'image s'affiche.
voilà l'affichage de ces images
J'ai rencontre un problème au niveau d’affichage de mes image. Je suis encore novice en
voilà comment l'image s'affiche.
<?php
include('basedonne.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<title>IMPACT BOUTIQUE</title>
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="corps.css">
</head>
<body class="body">
<?php
include 'menu.php';
?>
<?php
include 'section.php';
?>
<?php
$req=$bdd->prepare("SELECT * FROM produits");
$req->execute();
?>
<table width="110%">
<?php while ($resultat=$req->fetch()) { ?>
<tr>
<td><img height="100" width="100" src="destination/<?php echo($resultat['PHOTO']) ?>"></td>
<td><?php echo($resultat['DESIGNATION']) ?></td>
<td><?php echo($resultat['PRIX']) ?></td>
<td><?php echo($resultat['DISPONIBLE']) ?></td>
<td><?php echo($resultat['PROMOTION']) ?></td>
</tr>
<?php
}
?>
</table>
</body>
</html>
<?php
$req->CloseCursor();
?>
voilà l'affichage de ces images