html5 - How to design my all records? -


i retrieve image , display view.but don't know popup images when hover images.i tried every-time image pop @ once hover @ once.so how divided each image different div's can individually make them pop when hover.following view

<?php include('inc/header.php');?>  <div class="main">     <?php         foreach ($view $row) {             echo "<img src='".base_url()."images/".$row->image."'>" ;                }//end each      ?>   </div> <?php include('inc/footer.php');?> 

and when add divs , css

<?php include('inc/header.php');?>  <div class="main">  <div id="thumbwrap">       <a class="thumb" href="#"><?php              echo "<img src='".base_url()."images/".$view->image."'>";                }//end each      ?>     <span><?php         foreach ($view $row) {             echo "<img src='".base_url()."images/".$row->image."'>" ;                }//end each      ?></span></a>      </div>   </div> <?php include('inc/footer.php');?> 

please help...


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -