Hi, I want to create a gallery of images where you define how many I want to see, and I want them to look at 3 per row using php
<body>
<div class="container-fluid">
<?php
$numeroGato=10;
for ($i = 1; $i <= $numeroGato; $i++) {
echo "<div class='row'><img src='img/gato".$i.".jpg' class='mediana'></div>";
}
?>
</div>
</body>
at the moment I wear that and only look down