THOUSANDS OF FREE BLOGGER TEMPLATES

Rabu, 14 Oktober 2009

CONTOH TAMPILAN SCRIPT


ini scriptnya :
< ?phpheader(" Content-Type:image/jpeg" )
$background=@imagecreate(100,100);
$kuning=imagecolorallocate($background,250,250,300);
$hitam=imagecolorallocate($background,0,0,0);
imagearc($background,50,50,50,50,0,360,$hitam);
imageJPEG($background);imagedestroy($background);? >
$kuning=imagecolorallocate($background,250,250,300);
$hitam=imagecolorallocate($background,0,0,0);
imagearc($background,50,50,50,50,0,360,$hitam);
imageJPEG($background);imagedestroy($background);
? >< ?phpheader(" Content-Type:image/jpeg" );
$hitam=imagecolorallocate($background,0,0,0);
imagearc($background,50,50,50,50,0,360,$hitam);
imageJPEG($background);imagedestroy($background);? >



< ?php$a = 2;$b = 15;print " \$a = $a dan \$b = $b " ;if ($a > $b){print ;" Nilai a lebih besar dari nilai b;" ;}else{print ;" Nilai a lebih kecil dari nilai b;" ;}?>

< ?php$kalimat = " Belajar PHP" ;$jumlah=strlen($kalimat);print " variabel string \$kalimat = $kalimat <> " ;print " Kalimat '$kalimat' diatas jumlah karakternya adalah $jumlah " ;? >


< ?php$cfile = " datapengunjung.dat" ;

$fh = fopen($cfile, " r+" );

if (!$fh){die(" Gagal membuka file <> $cfile< /I> . " );}$s = fgets($fh, 6);$hitung = (int) $s;$hitung = $hitung + 1;$hitung = str_pad($hitung, 6);

rewind($fh);fwrite($fh, $hitung);

echo " Anda pengunjung ke $hitung" ;fclose($fh);? >



< ?php$dir = opendir(" ./ " );while ($baca_file = readdir($dir)){echo " $baca_file" , " \n" ;}closedir($dir);? >


SCRIPT PHP

INI Scriptnya :
$nilai1=32;
$nilai2=8;
$jumlah=$nilai1+$nilai2;
$kurang=$nilai1-$nilai2;
$kali=$nilai1*$nilai2;
$bagi=$nilai1/$nilai2;
$sisa=$nilai1%$nilai2;

print "Contoh operasi Aritmatika ";
print "Nilai \$nilai1=$nilai1 dan \$nilai2=$nilai2 ";print "\$nilai1 + \$nilai2 = $jumlah ";
print "\$nilai1 - \$nilai2 = $kurang ";
print "\$nilai1 * \$nilai2 = $kali <:br>";print "\$nilai1 / \$nilai2 = $bagi ";
print "\$nilai1 % \$nilai2 = $sisa "; ?>


INI Scriptnya :



"; } $bila = 5; $pola = 1; print "
Bilangan ganjil antara 5 sampai 25
";for ($pola=1; $pola<10; style="font-weight: bold;">Foreach


INI Scriptnya :

print "Klub-klub yang pernah juara Liga Indonesia :
";

foreach ($klub as $nilai){print "$nilai
";}?>

Selasa, 25 Agustus 2009

CONTOH SCRIPT PHP








Selasa, 04 Agustus 2009

CARA MENGINSTAL WEB SERVER

Melanjutkan dari artikel yang sebelumnya Install Web Server Di Fedora 6 Part1 yang membahas cara menginstal MySQL 5.0.51 dan di artikel Instal Web Server Di Fedora Part2 ini aku akan membuat tutorial bagaimana cara untuk mengaktifkan & menginstall Apache 2.2.8 beserta tool pendukungnya dan di lanjutkan dengan konfigurasi & install PHP 5.2.5 di linux fedora 6. Selamat ngoprek linux kamu.INSTALASI APACHE 2.2.8Sekarang masuklah di direktori Source Apache 2.2.8[root@yustian src]#cd /usr/src/httpd-2.2.8Konfigurasi dan kompilasi Source Apache.[root@yustian httpd-2.2.8]#./configure –prefix=/webserver/apache \>–with-apxs2=/webserver/apache/bin/apxs \>–with-mysql=/webserver/mysql \>–enable-mods-shared=all \>–enable-so \>–enable-rewrite \>–enable-headers \>–enable-mime \>–enable-auth-digest[root@yustian httpd-2.2.8]#make[root@yustian httpd-2.2.8]#make installAgar apache-nya berjalan pada saat start-up masuk pada file rc.local.[root@yustian httpd-2.2.8]#vi /etc/rc.localTambahkan perintah /webserver/apache/bin/apachectl start dalam file rc.local kemudian simpanlah dengan perintah :wq.Sebaiknya apache nya belum dijalankan dulu yah.Sekarang kamu menginstal Source PHP-nyaINSTALASI PHP 5.25Sekarang masuklah di direktori Source PHP 5.25[root@yustian src]#cd /usr/src/php-5.2.5Konfigurasi dan kompilasi Source PHP-nya.[root@yustian php-5.2.5]#./configure –prefix=/webserver/php \>–with-apxs2=/webserver/apache/bin/apxs \>–with-mysql=/webserver/mysql \>–with-mysqli=/webserver/mysql/bin/mysql_config \>–with-sqlite \>–enable-sqlite-utf8 \>–with-zlib \>–with-zlib-dir \>–with-bz2 \>–with-gd \>–enable-gd \>–enable-gd-native-ttf \>–with-ttf \>–enable-track-vars \>–with-config-file-path=/webserver/apache/conf \>–enable-mbstring[root@yustian php-5.2.5]#make[root@yustian php-5.2.5]#make installSelanjutnya agar file php dapat dijalankan silahkan edit file httpd.conf-nya.[root@yustian php-5.2.5]#vi /webserver/conf/httpd.confLalu tambahkan perintah dibawah ini dan simpan.DirectoryIndex index.html index.htm index.phpAddType application/x-httpd-php .phpAddType application/x-httpd-php-source .phpsJika ingin menentukan letak dari dokumen web kamu silahkan edit tag berikut.DocumentRoot “Letak file dan dokumen home page Web server”Sekarang jalankan Apache-nya.[root@yustian php-5.2.5]#/webserver/apache/bin/apachectl startSelanjutnya Cek apakah apache sudah jalan apa belum![root@yustian php-5.2.5]#telnet localhost 80Trying 127.0.0.1…Connected to localhost.localdomain (127.0.0.1).Escape character is ‘^]’.HEAD GET [Enter 2x] dan mucul keterangannyaTahap berikutnya testing , dengan membuat file index.php di /webserver/htdocs/ yang isi-nya:Hapus file index.html di /webserver/htdocs dan buka browser kamu ketik di URL http://yustian.web.id/jaringan/ maka akan tampil seperti gambar dibawah ini. Sampai disini kamu telah membuat Webserver


Langkah terakhir untuk memudahkan dalam membuat database kamu perlu menginstall phpmyadmin dengan cara berikut ini.Masuk ke direktori Source Tool tadi.[root@yustian ~]#cd /usr/src/Extrack file phpMyAdmin ke /webserver/htdocs/ dan rename direktori-nya menjadi php[root@yustian src]#tar –zxvf phpMyAdmin-2.11.4.tar.gz –directory=/webserver/htdocs/[root@yustian src]#mv /webserver/htdocs/phpMyAdmin-2.11.4 /webserver/htdocs/phpNah sekarang coba buka browser Kamu dan ketikan di URL http://localhost/php bila tampil seperti dibawah ini berarti webserver yang telah kamu buat sukses 100%. Ok . Silahkan mencobanya.

Senin, 27 Juli 2009

Pemrogaman WEB

WWW (World Wide Web) = Jaringan Internet




WWW (World Wide Web) = Jaringan Internet


Protokol = Aturan standart di internet bernama HTTP (Hypertext Transfer Protokol)


Address = URL (Uniform Result Locator) alamat komputer di Internet.


HTML = Bahasa atau scrip yang menghasilkan halaman web.Pemrogaman web ada dua kategori, yaitu :

1. Server Side Progamming

2. Client Side ProgammingPada Server Side Programming, perintah - perintah program (script) dijalankan di web server, kemudian hasilnya di kirim ke Browser.


HTML (Hyper Text Markup Language)


Contoh :
a. Server Side : CGI / Perl, ASP, JSP, PHP, CFM.
b. Client Side : Java Script, VB Script, HTML.


HTML (Hyper Text Markup Language)


A. Program Editor HTML

Program yang digunakan untuk menuliskan semua kode-kode program.

Contohnya : Macromedia, Dreamveaver, Frot Page, Home Site, HotDog, PHPDesigner, PHPED, Webedit, Adobe Golive, dan juga sebagai editor standart bawahan windows yaitu Notepad.


HTML adalah bahasa markup yang umum digunakan. Kepopuleran HTML disebakan karena HTML ini mudah digunakan. Pembuatan dokument WEB dengan HTML dapat dilakukan dengan mudah dan cepat. Dokumen WEB dapat tersaji dengan cepat ke banyak pembaca di seluruh dunia sekaligus. HTML mudah melakukan kontrol terhadap tampilan halaman WEB baik berupa teks, gambar, suara, animasi maupun video.
Listing dasar HTML=

Catatan : Cara penyimpanan harus diperhatikan penulisannya yaitu menggunakan ekstensi .htm.html.

B.PHP(Hypertext Preprocessor)

Bahasa berbentuk scrip yang ditempatkandalam server.
PHP merupakan sebuah bahasa scripting yang terpasang pada HTML. Sebagian besar sintaks mirip dengan bahasa C, Java dan Perl, ditambah beberapa fungsi PHP yang spesifik.
Tujuan utama penggunaan bahasa ini adalah untuk memungkinkan perancang web menulis halaman web dinamik dengan cepat. PHP merupakan bahasa pemograman web yang bersifat server-side HTML=embedded scripting, di mana script-nya menyatu dengan HTML dan berada si server. Artinya adalah sintaks dan perintah-perintah yang kita berikan akan sepenuhnya dijalankan di server tetapi disertakan HTML biasa. PHP dikenal sebgai bahasa scripting yang menyatu dengan tag HTML, dieksekusi di server dan digunakan untuk membuat halaman web yang dinamis seperti ASP (Active Server Pages) dan JSP (Java Server Pages).

Kelebihan PHP:
1. PHP mudah dibuat dengan kecepatan akses tinggi
2. PHP dapat berjalan dalam webserver yang berbeda dan dalam sistem operasi yang berbeda pula.
3. PHP dapat berjalan dalam sistem operasi UNIX atau Linux, windows 98, windows NT, dan Macintosh.
4. PHP diterbitkan secara gratis.
5. PHP juga dapat berjalan dalamweb server mikrosov personal webserver (PWS), Apache, ns, Xitami, dsb.
6. PHP termasuk server-sode programing
7. PHP merupakan bahasa yang embedded (bisa ditempel/diletakkan dalam tag HTML)PHP menawarkan konektivitas yang baik dg beberapa basis data antara lain Oracle, Sybase, Msql, MySQL, dBase, Postgres SQL,Generic ODBC.

Jumat, 24 Juli 2009

I'M YOURS

Well, you done done me and you bet I felt it
I tried to be chill but your so hot that I melted
I fell right through the cracks, now I'm tryin to get back
before the cool done run out I'll be givin it my best test
and nothin's gonna stop me but divine intervention
I reckon it's again my turn to win some or learn some

But I won't hesitate no more,
no more, it cannot wait
I'm yours

Well open up your mind and see like me
open up your plans and damn you're free
look into your heart and you'll find love love love love
listen to the music at the moment people dance and sing with me
Were just 1 big family
And it's our godforsaken right to be loved loved loved loved loved

So, i won't hesitate no more,
no more, it cannot wait i'm sure
there's no need to complicate our time is short
this is our fate
I'm yours

Scooch on over closer, dear
And I will nibble your ear

I've been spendin' way too long checkin' my tongue in the mirror
and bendin' over backwards just to try to see it clearer
But my breath fogged up the glass
and so I drew a new face and I laughed
I guess what I'd be sayin' is there ain't no better reason
to rid yourself of vanities and just go with the seasons
it's what we aim to do
our name is our virtue

But I won't hesitate no more,
no more it cannot wait
I'm yours

well open up your mind and see like me
open up your plans and damn you're free
look into your heart and you'll find love love love love
listen to the music of the moment come and dance with me
ah, la one big family
it's your god forsaken right to be loved, loved, loved, loved

open up your mind and see like me
open up your plans and damn you're free
look into your heart and you'll find love love love love
listen to the music of the moment come and dance with me
ah, la happy family
it's our god forsaken right to be loved loved loved loved


it's our god forsaken right to be loved loved loved loved
listen to the music of the moment come and dance with me
ah, la peaceful melodies
it's you god forsaken right to be loved loved loved loved