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
18.46
Attitude, bahasa tubuh, Bahasa Tubuh yang Harus Dihindari Saat Wawancara Kerja, kerja, Pengetahuan, Referensi
1 comment
Jumat, 10 Agustus 2012
Contoh Program PHP "konversi decimal to Hexa"
17.19
contoh program, Komputer, Pemrogaman, Pengetahuan, PHP, Referensi, Teknologi, Tips n Trick Computer
No comments
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..");
}
<?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
14.56
contoh program, Komputer, Pemrogaman, Pengetahuan, PHP, Referensi, Teknologi, Tips n Trick Computer
No comments
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
22.01
Komputer, Pemrogaman, Pengetahuan, PHP, Referensi, Teknologi, Tips n Trick Computer
No comments
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;
?>
Langganan:
Postingan (Atom)