how to fetch blob image gallery in php html sql
create a new gallery.php page and paste this code and change column names according to this. <?php session_start(); ?> <!DOCTYPE html> <html> <head> <title>Image Gallery Example</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <!-- References: https://github.com/fancyapps/fancyBox --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" media="screen"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.js"></script> <style> ul { list-style-type: none; margin: 0; ...
Helpful for me . Thanks
ReplyDelete