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, 26 Agustus 2012

Bahasa Tubuh yang Harus Dihindari Saat Wawancara Kerja


Wawancara kerja berguna tidak hanya untuk menilai kemampuan Anda, tapi juga perilaku. Banyak hal harus dipersiapkan agar momen yang menentukan ini berjalan lancar. Salah satunya, mengetahui bahasa tubuh yang sebaiknya dihindari.

Jumat, 10 Agustus 2012

Contoh Program PHP "konversi decimal to Hexa"

Setelah kemarin ane udah posting contoh php "Decimal to Octal. Sekarang ane mau posting "decimal to HEXA" scriptnya hampirsama kok cima ada beda sedikit. Okay langsung saja lihat script nya dibawah ini :

<?php
if (isset($_POST['decimal'])) {
    $des = $_POST['decimal'];
    $original = $_POST['decimal'];
    $hexa ='';
    if (preg_match('/[^0-9]/',$des)){
        die("Maaf. Inputan yang anda masukkan salah..");
    }

Kamis, 09 Agustus 2012

Contoh PHP Konversi Desimal to Octal



Ini bos ane punya cantoh program PHP koversi desimal to octal, harap maklum kalo banyak salahnya soalnya ane juga baru belajar

pertama buat dulu New PHP Web Page, terus kalo udah masukkan script dibawah ini


<!DOCTYPE html>
<?php
if (isset($_POST['decimal'])) {
    $des = $_POST['decimal'];
    $original = $_POST['decimal'];
    $oct ='           ';
    if (preg_match('/[^0-9]/',$des)){
        die("Sorry. Inputan salah..");
    }

Minggu, 05 Agustus 2012

Perbedaan Echo atau Print dalam script PHP

Apa perbedaan echo dan print dalam bahasa pemrograman PHP ? Kita seringkali menggunakan echo (atau print) tapi tidak mengetahui apa perbedaannya antara dua syntax tersebut.
Print dapat berlaku seperti sebuah fungsi artinya print memiliki return value berupa boolean jika sukses sedangkan echo tidak. Echo langsung meng-output-kan parameter yang diberikan. Oleh karena itu, kita dapat melakukan
<?php
$a = “Hello”;
$b = ” World”;
echo $a, $b;
?>