Rabu, 27 Februari 2008
Dunia internet berkembang begitu cepat, dari
web statis berkembang menjadi web dinamis.
Dunia PHP adalah salah satu dunia
pemrograman internet, yang menjalankan web dinamis
[:]Anda membutuhkan Server Console.
Pilih salah satu:
1. PHPTriad, cari di google.com keyword: download
phptriad
2. XAMPP (Lebih Proffesional), cari di google.com keyword: download
XAMPP
Baca aturan pakainya...lanjutkan sendiri mudah kok...
[:] Setelah terinstall dengan baik
anda bisa mulai
coba
>> script 1:
-----------------
<?
echo
"Selamat datang di dunia PHP";
?>
-----------------
Nanti hasilnya: Selamat datang di dunia PHP
>> script 2 (Perkenalan Variabel
$xx):
-----------------
<?
$nama = b_scorpio;
echo
$nama;
?>
-----------------
Nanti hasilnya: b_scorpio
>> script 3 (Perkenalan
Function()):
-----------------
<?
function birthday()
{
$age = 20;
}
birthday();
echo $age;
?>
-----------------
Nanti hasilnya: 20
Sampai di sini anda mungkin sudah ahli, jadi ya saya loncati saja...
[:] Perkenalan PHP super globals
Tabelnya:
|
|
---|---|
$GLOBALS | Contains any global variables that are accessible for the local |
$_SERVER | Contains information about the web server |
$_GET | Contains information from GET requests (a form |
$_POST | Contains information from POST requests (another type |
$_COOKIE | Contains inform from HTTP cookies. |
$_FILES | Contains information from POST file |
$_ENV | Contains information about the environment (Windows or |
$_REQUEST | Contains information from user inputs. These values should not |
$_SESSION | Contains information from any variables registered in a |
*penting !!:
Kedepannya anda akan sering berhadapan dengan PHP super
globals.
>> Script
4
-----------------
<?php
$my_string = "b_scorpio";
echo
"Belajar PHP dengan $my_string di Indrawap.web.id";
?>
-----------------
[:] Permasalahan Dobel Quote
>> Script 5
-----------------
<?php
// ini
tidak bisa bekerja karena ada Dobel Quote pada tag HTML
echo "<h2
class="specialH2">www.Indrawap.web.id</h2>";
?>
-----------------
>> Script 6
-----------------
<?php
//
Dobel Quote dapat diatasi dengan menggantinya dengan Single Quote
echo
"<h2
class='specialH2'>Indrawap.web.id</h2>";
?>
-----------------
0 komentar:
Posting Komentar