Rabu, 28 Januari 2009

Posted By; Anggi
Perkenalan dengan PHP
19-03-2007 | 16:11:01 | Halaman Ini dibaca 2373 kali


Update terakhir artikel ini 1 Juni 2007

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

Jika kesulitan menemukan program diatas, email saya: black.scorpio.night@gmail.com
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 script. The variable names are used to select which part of the array to access.

$_SERVER
Contains information about the web server environment.

$_GET
Contains information from GET requests (a form submission).

$_POST
Contains information from POST requests (another type of form submission).

$_COOKIE
Contains inform from HTTP cookies.

$_FILES
Contains information from POST file uploads.

$_ENV
Contains information about the environment (Windows or Mac).

$_REQUEST
Contains information from user inputs. These values should not be trusted.

$_SESSION
Contains information from any variables registered in a session.



*penting !!:
Kedepannya anda akan sering berhadapan dengan PHP super globals.

>> Script 4
-----------------
$my_string = "b_scorpio";
echo "Belajar PHP dengan $my_string di www.ilmuwebsite.com";
?>
-----------------


[:] Permasalahan Dobel Quote

>> Script 5
-----------------
// ini tidak bisa bekerja karena ada Dobel Quote pada tag HTML
echo "

www.ilmuwebsite.com

";
?>
-----------------


>> Script 6
-----------------
// Dobel Quote dapat diatasi dengan menggantinya dengan Single Quote
echo "

www.ilmuwebsite.com

";
?>
-----------------