Posts

Responsive RSS Search Form With Bootstraps 4.0.0-beta

Image
Bootstraps 4, HTML, CSS, dan JS Framework yang paling populer di dunia. Latest Bootstraps 4 CDN Bila Anda hanya perlu menyertakan CSS dan JS Bootstrap yang dikompilasi, gunakan CDN Bootstrap, yang disediakan bebas oleh kawan-kawan Max CDN. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js" integrity="sha384-A7FZj7v+d/sdmMqp/nOQwliLvUsJfDHW+k9Omg/a/EheAdgtzNs3hpfag6Ed950n" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js" integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb" crossorigin="anonymous"></script> <script src="htt

AMP-Accordion Modification Being an AMP HTML Blog Spoiler

Image
Problem: U nfortunately for AMP HTML still has 1 deficiency that is  -img  not appear in spoiler unless spoilernya open first.  This means that  amp-img  can not be stored in a  div  that has a  display: none;  style  display: none;   Except by using an  amp-accordion  .   For that, this time we will modify the amp-accordion to  spoiler for AMP HTML blog  so it is safer to use (can display image inside spoiler).   Demo spoiler below: (Demo  only, no live) Spoiler: Hint <div class="spoiler-amp">  <span class="spoiler_title">Spoiler: </span>  <amp-accordion>  <section>  <h4>Hint</h4>  <div><p>  Simpan konten atau gambar (amp-img) di sini ....  </p></div>  </section>  </amp-accordion>  </div>  Spoiler: Hint Equation billions upon billions!   Courage of our questions decipherment, take root and flourish, cosmic ocean paroxysm of global death.   Light years incon

How to Multiple Delete With CodeIgniter

Image
In this tutorial I will discuss about how to create Multiple Delete With CodeIgniter , If you guys often use wordpress definitely friends will know, because wordpress apply this in their system. First prepare your codeigniter folder named delete_multiple, Here I assume friends already know how to setup initial CodeIgniter like config.php, autoload.php dll, database.php. We will use the Controller welcome.php default is Codeigniter or at least have followed the basic tutorial of the use of Codeigniter . Read Also: CRUD Tutorial (Create, Read, Update and Delete) With CodeIgniter - Part 1 & Part 2 Next create a database codeigniter_crud , create a student table like the following conditions below sqlnya: -- -- Database: `codeigniter_crud` -- -- -------------------------------------------------------- -- -- Table structure for table `siswa` -- CREATE TABLE IF N