Uygulamayı yükle
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Not: This feature may not be available in some browsers.

Çözüldü Php Slider Sorunu

semihsahin

DenizBera'm
Level 5
Son görülme
Katılım
27 Ağu 2022
Mesajlar
94
Tepkime puanı
59
Puanları
80
Web sitesi
www.semihsahin.net
NullCash
492
Arkadaşlar thumb da resim seçilince active olayını bi türlü yapamadım.



Kod:
<div id="carousel-product" class="carousel slide carousel-thumbnails mb-3" data-ride="carousel">

<div class="carousel-inner" role="listbox">

<?php

$alt_img = '';

$query = $db->query("SELECT * FROM urun_img WHERE urun_id = '{$urun['id']}'", PDO::FETCH_ASSOC);

if($query->rowCount()){

foreach($query as $row){

echo '

<div class="carousel-item active">

<img class="img-responsive" src="upload/'.$row['img'].'"></div>';

$alt_img.= '

<li data-target="#carousel-product" data-slide-to="1" class="verso-transition active">

<img src="upload/'.$row['img'].'" alt="'.$urun['baslik'].'">

</li>

';

}

}

?>

</div>

<ol class="carousel-indicators -mb--2">

<?php echo $alt_img; ?>

</ol>

</div>
 

semihsahin

DenizBera'm
Level 5
Son görülme
Katılım
27 Ağu 2022
Mesajlar
94
Tepkime puanı
59
Puanları
80
Web sitesi
www.semihsahin.net
NullCash
492
sorunu çözdüm


Kod:
<div id="carousel-product" class="carousel slide carousel-thumbnails verso-mb-3" data-ride="carousel">
                                    <div class="carousel-inner" role="listbox">
                                        
                
                   <?php
                        $alt_img = '';
                        $query = $db->query("SELECT * FROM urun_img WHERE urun_id = '{$urun['id']}' ", PDO::FETCH_ASSOC);
                        if($query->rowCount()){
                          $row_count = 0;
                            foreach($query as $row){
    echo '<div class="carousel-item'; if($row_count == 1) { echo ' active'; } echo '"><img class="img-responsive" src="upload/'.$row['img'].'"></div>';
    $alt_img.= '<li data-target="#carousel-product" data-slide-to="'.$row_count.'" class="verso-transition"><img src="upload/'.$row['img'].'" alt="'.$urun['baslik'].'"></li>';
    $row_count++;
}
                        }
                    ?>
                                        
                                    </div>
                                    <ol class="carousel-indicators verso-mb--3">
                                        
                                        <?php echo $alt_img; ?>
                                    </ol>
                                    
                                </div>
 
DMCA compliant image
  • Üst