How to put random images with each access? [closed]

-2

In the Slide below, can you make every time you enter the site a different slide and not follow the sequence?

If this slide was html + css3 would it be possible also without javascript?

link

And how can I get these images to be fetched from the database? remembering that the slide in html5.

    
asked by anonymous 31.10.2016 / 04:38

1 answer

1
  

If this slide was html + css3 would it be possible also without javascript?

No, you have buttons with actions that css3 does not do ...

  

And how can I get these images to be fetched from the database?

Following the example of data connection

<div class="flexslider">
  <ul class="slides">
<?php
foreach ($conn->query($sql) as $row) {
    echo '<li><img src="'.$row['name'].'" /></li>';
}
?>
  </ul>
</div>
    
31.10.2016 / 14:53