1 / 10

Pemrograman Internet (modul 2)

Pemrograman Internet (modul 2). By Hendra Gunawan. Sintak Dasar PHP. Sintak dasar PHP: <?php echo “Hello World !”; ?> Setiap baris sintak PHP, diakhiri tanda ‘;’ (titik koma) PHP merupakan bahasa pemrograman Interpreter, berbeda dengan bahasa pemrograman lainnya. (VB, Delphi dll).

bruce-lloyd
Download Presentation

Pemrograman Internet (modul 2)

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Pemrograman Internet(modul 2) By Hendra Gunawan

  2. Sintak Dasar PHP • Sintak dasar PHP: <?php echo “Hello World !”; ?> • Setiap baris sintak PHP, diakhiri tanda ‘;’ (titik koma) • PHP merupakan bahasa pemrograman Interpreter, berbeda dengan bahasa pemrograman lainnya. (VB, Delphi dll).

  3. Sintak PHP dalam HTML • Sintak PHP dalam HTML dapat di tuliskan sbb: <html> <head> <title> PHP Test </title> </head> <body> <?php echo “Hello World !”; ?> </body> </html>

  4. Konfigurasi PHP • Dalam merancang program PHP, seorang programmer harus tahu informasi Server PHP dimana program PHP akan di letakkan. Contoh script PHP melihat konfigurasi Server PHP: <?php phpinfo(); ?>

  5. Komentar pada PHP • Programmer dapat memberikan keterangan/berupa komentar pada baris script yang dibuatnya. Contoh: <?php // mencoba membuat program PHP echo “Hello World !”; //menampilkan tulisan Hello World ! ?>

  6. Penggabungan 2 statemen • Untuk menggabungkan 2 statemen atau lebih, dapat digunakan tanda ‘.’ (titik), contoh: <?php echo “Hello “ . ”World !”; ?>

  7. Variabel • Deklarasi variabel atau bisa disebut dengan inisialisasi suatu variabel, harus diawali dengan tanda ‘$’ (dollar) di setiap awal nama variabel. Contoh: <?php $smtr=6; //variabel integer $kata=“Semester saat ini ”; //variabel string $gabung=$kata.$smtr; echo $gabung; ?> • Aturan penulisan variabel: • Dimulai dengan tanda ‘$’. • Karakter pertama berupa huruf (bukan angka) atau underscore ‘_’ • Karakter berikutnya bisa huruf, angka atau garis bawah.

  8. Tipe Data • Tipe data sederhana dalam PHP (scalar types): • Boolean • Integer • Float / Double • String

  9. Boolean • Tipe Boolean sudah ada sejak PHP 4. • Contoh penggunaan boolean: <?php $ada=TRUE; if($ada) {echo “Boolean TRUE”;} ?> • Konversi nilai boolean bernilai False: • Boolean = FALSE • Integer = 0 • Float = 0,0 • String = “” (empty string) • NULL

  10. To Be Continue Any Questions ? of Course, Not ! Do You Understand ? of Course, Not ! What do you Think ? I don’t Think So...

More Related