Create Dynamic Bootstrap 4 Carousel Using PHP & MySQLi | Dynamic BS4 Image Slider

preview_player
Показать описание
Hello friends! In this video I'm showing you how to make dynamic bootstrap 4 carousel using PHP and MySQLi.
In this tutorial first I've designed a simple form for uploading image into database and then I've fetched all the images from the database and display in the bootstrap 4 carousel.

#SUBSCRIBE_THIS_CHANNEL
#dynamic_bootstrap4_carousel

If you like my works and my video tutorials then you can donate me some amount. You can donate through these links :



Thanks for watching this video. If you like this video then hit like button, share this video, And Subscribe my Channel. Also like my Facebook page for latest updates.

Рекомендации по теме
Комментарии
Автор

this tutorial was very helpful. Am able to cure the headache in my project. Thank you

sylvesterafful
Автор

Thanks for the awesome tutorials, You are the best

lynnnana
Автор

Awesome It Worked!!
I have been looking for something to add inside a while loop that
would only run the images that have the same ids as the item id.
this worked for me.
**Make sure to not use GROUP BY in your query!! other wise it wont work!!**
Thanks DCodeMania!!

techdeveloper
Автор

you deserve more like and subscribers :)

zee-yfoj
Автор

Amazing tutorials helped me a lot to learn the custom slider👍👍👍

AnjaliSharma-nvjv
Автор

thanks bro it so usefully for student like me thanks a lot : )

tejastalkar
Автор

Thanks man, this really helped me out

danielrowley
Автор

I cant see de slider but the console dont give an error, the code es exactly like the code of the video, but dont work.

racsoaromserauz
Автор

Thankyou for all your helpig tuitorial Sir! I'am waiting for Basic OOP of PHP and Laravel Tuitorial😊 More power sir!

whoyou
Автор

Very Good One Sahil, what the sublime theme name

sayedakbarali
Автор

is there a way to do this with mp4 videos instead of images?

marylucey
Автор

Tutorial is amazing 🔥
Can you provide the script please ?

lovishaggarwal
Автор

what about Delete or update the image? please reply

radgejoseph
Автор

This is a good video. every steps is very clear. Thanks so much but how do i hide the upload so cant buttons so that visitors can not be able to upload to my database and the teplate

uchennabenjamin
Автор

Hola no me puestra la imagen, solo las lineas de abajo que muestran la cantidad de imagenes nada mas

karlafragosocerecedo
Автор

What about if i want to delete or update. Thanks! :)

Win-yogb
Автор

Help!, It work on windows but not on Mac. What to do😬?

robertsuarez
Автор

Hi sir..my image cannot slide to other image..only the first img show.not sure what the problem...this is the code i follow:
<div class="col-lg-10">
<div id="demo" class="carousel slide" data-ride="carousel">

<!-- Indicators -->
<ul class="carousel-indicators">
<?php
$i = 0;
foreach ($result as $row) {
$actives = '';
if($i == 0){
$actives = 'active';
}
?>
<li data-target="#demo" data-slide-to="<?= $i; ?>" class="<?=$actives; ?>">
</li>

<?php $i++; } ?>
</ul>

<!-- The slideshow -->
<div class="carousel-inner">
<?php
$i = 0;
foreach ($result as $row) {
$actives = '';
if($i == 0){
$actives = 'active';
}
?>
<div class="carousel-item <?=$actives; ?>">
<img src="<?= $row['image_path'] ?>" width="100%" height="400">
</div>

<?php $i++; } ?>

</div>

<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span
</a>

</div>

</div>

mohdaidil
Автор

Please give the solution waring is comming that invalid parameters passd in foreachloop()

nirbhaysingh
Автор

but how to delete / update that image?

adminfridatiga