Suppose I have 100 images, named 1.png,2.png,3.png...so on.
Is there any coding that it automatically increases the number.
For Eg, I have
<div class="col-md-2">
<div class="thumbnail">
<a href="<?php echo $details;?>6.php" target="_blank">
<img class="img-zoom" src="<?php echo $images;?>6.png" alt="Lights" style="width:100%">
</a>
</div>
</div>
so now it should automatically do
<div class="col-md-2">
<div class="thumbnail">
<a href="<?php echo $details;?>7.php" target="_blank">
<img class="img-zoom" src="<?php echo $images;?>7.png" alt="Lights" style="width:100%">
</a>
</div>
</div>
then
<div class="col-md-2">
<div class="thumbnail">
<a href="<?php echo $details;?>8.php" target="_blank">
<img class="img-zoom" src="<?php echo $images;?>8.png" alt="Lights" style="width:100%">
</a>
</div>
</div>
and so on..
Auto increase number..