Posts

Showing posts with the label Script

Contoh User Interface Pemrograman

Image
          Mungkin disini masih ada yang masih belum mengetahui apa sih user interface itu? User Interface adalah bentuk gambar atau bentuk grafis yang kita tujukan untuk pengguna ( user ).      Salah satu admin kita  Disini akan memberikan contoh kepada kamu seperti apa sih contoh dari user interface untuk pembuatan program.  1. Login        2. Index             3. Form atau Insert              4. Show              5. Search                   Diatas adalah contoh dari user interface pemrograman web, dan sekarang kita akan memperlihatkan hasil dari user interface diatas. 1. Login 2. Index 3. Form atau Insert      4. Show 5. Search dan selesai, selamat mencoba.

Contoh Script Koneksi PHP

Script Koneksi.php Apasi Sebenarnya Script Koneksi.php itu ?  Script koneksi.php bertujuan atau berfungsi agar script yang kita punya terhubung dengan database di localhost phpmyadmin. dibawah ini saya akan memberikan contoh Script Koneksi.php,  ================================================================================ <?php  $koneksi = mysqli_connect("localhost","root",""," Isi Dengan Nama DataBase Kamu "); ?> ================================================================================ Tulisan yang berwarna merah harap kamu ganti dengan nama database yang kamu pasang di database localhost kamu. Selesai sangat mudah dan simpel bukan, eits tapi jangan salah script koneksi.php ini meskipun simpel dan ringkas tapi kalau script ini tidak ada diantara salah satu script kalian maka program kalian tidak akan bisa jalan kecuali yang tidak memakai database ya...

Contoh Script Insert

Image
FORM  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Form Izin</title> </head> <body> <form method="post" action="insertbarang.php"> <center><table width="500" height="200" border="10" cellpadding="10" cellspacing="5">   <tr>     <td>ID Izin</td>     <td>:</td>     <td><input type="text" name="id_izin"></td>   </tr>   <tr>     <td>Nama</td>     <td>:</td>     <td><input type="text" name="nama"></td>   </tr>   <tr>     <td>kelas</td>     <

Ysabelle Cuevas - I Like You So Much You'll Know It [English Cover] Lyrics

Image
i like your eyes, you look away when you pretend not to care i like the dimples on the corners of the smile that you wear i like you more, the world may know but don't be scared coz i'm falling deeper, baby be prepared i like your shirt, i like your fingers, love the way that you smell to be your favorite jacket, just so i could always be near i loved you for so long, sometimes it's hard to bear but after all this time, i hope you wait and see love you every minute, every second love you everywhere and any moment always and forever i know i can't quit you coz baby you're the one, i don't know how i love you till the last of snow dissapears love you till a rainy day becomes clear never knew a love like this, now i can't let go i'm in love with you, and now you know i like the way you try so hard when you play ball with your friends i like the way you hit the notes, in every song you're shining i love the little thing, like when you're unaware i ca

Contoh Script Search Dalam PHP

Image
================================================================================================ PETUNJUK PENGGUNAAN!!! TULISAN BERWARNA MERAH = DIGANTI SEPERTI APA KAMU MENAMAINYA SAAT MENYIMPAN SCRIPT KAMU DI HTDOCS. TULISAN BERWARNA UNGU = DIGANTI NAMANYA SEPERTI KALIAN BAGAIMANA MENYIMPANNYA DALAM TABEL DATABASE LOCALHOST. TULISAN BERWARNA HIJAU = DIGANTI BERDASARKAN NAMA  TABEL YANG  KALIAN GUNAKAN DI DATABASE LOCALHOST. ================================================================================================ <html> <head> <title></title> </head> <body >  <?php include 'koneksi.php'; ?> <center><form action=" searchbuku.php " method="get">   <label>Cari :</label>   <input type="text" name="cari">   <input type="submit" value="Cari"> </form> <br> <?php if(isset($_GET['cari'])){   $cari = $_GET['cari']