This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Minggu, 12 Februari 2012

MEMBUAT DATA PENJUALAN DENGAN NET BEANS

         Membuat data penjualan barang dengan menggunakan Net beans dengan Ms.Access data base.
Pertama-tama buat lah data base di Ms.access.kebetulan saya menggunakan Ms.access 2007.
-Buka Ms.Access > blank data base > beri nama, kebetulan ini saya beri nama uasTia. >Simpan dengan format Ms Access 2003 atau tipe Data base *mdb
-Buat lah tabelnya
 1.Tabel user


Sabtu, 11 Februari 2012

PENANGANAN EROR DI PHP

Penanganan Error Sederhana mengunakan function die()

Function die([string $message]) berfungsi untuk menghentikan eksekusi baris kode berikutnya dan memberi output parameter optional $message. Contoh:
  1. <?php  
  2. //tanpa error handling  
  3. $connection = mysql_connect("localhost", "user", "password");  
  4. mysql_select_db("test");  
  5. $result = mysql_query("select * from nama_table");  
  6. while($row = mysql_fetch_array($result)){  
  7. echo $row['nama_field'];  
  8. }  
  9. ?>  

MENAMPILKAN DATA DARI BEBERAPA TABEL


Menampilkan Data Dari Tabel Berelasi Satu-ke-satu

Cara paling cepat menampilkan dari tabel yang berelasi satu-ke-satu adalah menggunakan sql join, seperti kode php di bawah.
  1. <?php  
  2. $conn = mysql_connect("localhost","root","blah");  
  3. mysql_select_db("test",$conn);  
  4. $sql = "select * from product p inner join buku b on p.id_produk=b.id_produk";  
  5. $result = mysql_query($sql);  
  6. ?>  
  7. <table cellpadding="5" cellspacing="0" border="1">  
  8.     <tr>  
  9.         <th>Nama</th>  
  10.         <th>Harga</th>  
  11.         <th>Penulis</th>  
  12.         <th>Penerbit</th>  
  13.         <th>ISBN</th>  
  14.         <th>Tanggal Terbit</th>  
  15.     </tr>  
  16.     <?php while($buku = mysql_fetch_array($result)){?>  
  17.     <tr>  
  18.         <td><?php echo $buku['nama'];?></td>  
  19.         <td><?php echo $buku['harga'];?></td>  
  20.         <td><?php echo $buku['penulis'];?></td>  
  21.         <td><?php echo $buku['penerbit'];?></td>  
  22.         <td><?php echo $buku['isbn'];?></td>  
  23.         <td><?php echo $buku['tgl_terbit'];?></td>  
  24.     </tr>  
  25.     <?php }?>  
  26. </table>