 <?php
$obj=new main();
 $gl=$obj->getgalleryById();
 $i=0;

?>
<div class="span7"><div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  <div class="carousel-inner" role="listbox">
  <? foreach($gl as $key=>$value){ 
  $i++
  ?>
  <div class="item <? if($i==2) { ?> active <? } ?>">
  <img src="<?=$value['href']?>" alt="<?=$value['title']?>">
  </div>
  <? } ?>
   
 </div>

  <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  
    <i class="fa fa-chevron-circle-left" style="font-size:30px; color:#04539e;""></i>
  </a>
  <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
     <i class="fa fa-chevron-circle-right" style="font-size:30px; color:#04539e; margin-right:10px;"></i>
   
  </a>
</div></div>