1 / 6

Internet Programming PHP 1

Internet Programming PHP 1. M. Agus Zainuddin EEPIS – ITS Surabaya. Pokok Bahasan. Review HTML Pengenalan PHP Tag-tag Dasar PHP Struktur Kontrol. Review HTML.

dylan
Download Presentation

Internet Programming PHP 1

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. Internet ProgrammingPHP 1 M. Agus Zainuddin EEPIS – ITS Surabaya

  2. Pokok Bahasan • Review HTML • Pengenalan PHP • Tag-tag Dasar PHP • Struktur Kontrol

  3. Review HTML • HTTP (Hyper Text Transfer Protocol): Protokol yang menentukan aturan yang perlu diikuti oleh web browser dalam meminta atau mengambil suatu dokumen oleh web server. • URL (Uniform Resource Locator): Sarana yang digunakan untuk menentukan lokasi informasi pada suatu web server. • Format URL: Protocol_transfer://nama_host/path/nama_file. Ex: http://www.amazon.com/books/index.html

  4. Review HTML • Browser: software yang di install di mesin client yang berfungsi untuk menterjemahkan tag-tag HTML menjadi halaman web. Browser yang sering di gunakan biasanya Internet Explorer, Netscape Navigator, Opera, Mozilla dan masih banyak yang lainya. • Editor: Program yang di gunakan untuk membuat document HTML, ada banyak HTML editor yang bisa anda gunakan diantaranya: Notepad, Microsoft FrontPage, Macromedia Dreamweaver, dan lain-lain. • Jika pada bahasa pemrograman kita mengenal code, maka pada HTML kita mengenal yang namanya tag. • Tag html tidak bersifat case sensitive <body>sama dengan <BODY>

  5. Review HTML • Bentuk umum penulisan tag html adalah: <ELEMENT ATTRIBUTE = value> dimana: • Element- nama tag • Attribute- atribut dari tag • Value- nilai dari atribut. • Contoh: <BODY BGCOLOR=teal> • Document HTML bisa di bagi mejadi tiga bagian utama: html, head, dan body. <html> <head> </head> <body> </body> </html>

  6. Review HTML • Setiap document HTML harus di awali dan di tutup dengan tag HTML  <html> …… </html> • Tag <html> memberi tahu browser bahwa yang di dalam kedua tag tersebut adalah document HTML. • Bagian header dari document HTML di apit oleh tag <head></head>. • Di dalam bagian ini biasanya dimuat tag <tittle> yang menampilkan judul dari halaman web. <head> <title>Welcome to eepis-its</title> </head>

More Related