Posted by : Dedy Al Islami Kamis, 10 Juni 2010


Pengenalan

Up until recently, scripting on the internet was something which very few people even attempted, let alone mastered. Sampai baru-baru ini, scripting di internet adalah sesuatu yang sangat sedikit orang bahkan mencoba, apalagi menguasai. Recently though, more and more people have been building their own websites and scripting languages have become more important. Baru-baru ini meskipun, semakin banyak orang telah membangun website mereka sendiri dan bahasa scripting menjadi lebih penting. Because of this, scripting languages are becomming easier to learn and PHP is one of the easiest and most powerful yet. Karena itu, bahasa script menjadi lebih mudah untuk belajar dan PHP adalah salah satu belum termudah dan paling kuat.

What Is PHP? Apa itu PHP?

PHP stands for Hypertext Preprocessor and is a server-side language. Singkatan dari PHP Hypertext Preprocessor dan merupakan bahasa server-side. This means that the script is run on your web server, not on the user's browser, so you do not need to worry about compatibility issues. Ini berarti bahwa script dijalankan pada server Web Anda, bukan pada browser pengguna, sehingga Anda tidak perlu khawatir tentang masalah kompatibilitas. PHP is relatively new (compared to languages such as Perl (CGI) and Java) but is quickly becomming one of the most popular scripting languages on the internet. PHP relatif baru (dibandingkan dengan bahasa seperti Perl (CGI) dan Jawa), tetapi dengan cepat menjadi salah satu bahasa scripting yang paling populer di internet.

Why PHP? Mengapa PHP?

You may be wondering why you should choose PHP over other languages such as Perl or even why you should learn a scripting language at all. Anda mungkin bertanya-tanya mengapa Anda harus memilih PHP lebih dari bahasa lain seperti Perl atau bahkan mengapa Anda harus belajar bahasa script sama sekali. I will deal with learning scripting languages first. Saya akan membahas dengan belajar bahasa scripting pertama. Learning a scripting language, or even understanding one, can open up huge new possibilities for your website. Belajar bahasa scripting, atau bahkan pemahaman satu, bisa membuka kemungkinan-kemungkinan baru besar untuk website Anda. Although you can download pre-made scripts from sites like Hotscripts, these will often contain advertising for the author or will not do exactly what you want. Meskipun Anda dapat men-download script pra-terbuat dari situs seperti Hotscripts, sering kali ini akan berisi iklan untuk penulis atau tidak akan melakukan apa yang Anda inginkan. With an understanding of a scripting language you can easily edit these scripts to do what you want, or even create your own scripts. Dengan memahami bahasa scripting Anda dapat dengan mudah mengedit script untuk melakukan apa yang Anda inginkan, atau bahkan membuat script sendiri.

Using scripts on your website allows you to add many new 'interactive' features like feedback forms, guestbooks, message boards, counters and even more advanced features like portal systems, content management, advertising managers etc. With these sort of things on your website you will find that it gives a more professional image. Menggunakan script pada website Anda memungkinkan Anda untuk menambahkan fitur baru yang 'interaktif' seperti bentuk umpan balik, guestbook, papan pesan, counter dan fitur yang lebih canggih seperti sistem portal, manajemen konten, iklan dll manajer Dengan hal semacam ini pada website Anda akan menemukan bahwa memberikan citra yang lebih profesional. As well as this, anyone wanting to work in the site development industry will find that it is much easier to get a job if they know a scripting language. Selain ini, siapapun yang ingin bekerja dalam industri pengembangan situs akan menemukan bahwa lebih mudah untuk mendapatkan pekerjaan jika mereka tahu bahasa scripting.

What Do I Need? Apa yang saya Perlu?

As mentioned earlier, PHP is a server-side scripting language. Seperti disebutkan sebelumnya, PHP adalah bahasa server-side scripting. This means that, although your users will not need to install new software, you web host will need to have PHP set up on their server. Ini berarti bahwa, meskipun pengguna tidak perlu menginstal perangkat lunak baru, Anda web host harus memiliki PHP dipasang di server mereka. It should be listed as part of your package but if you don't know if it is installed you can find out using the first script in this tutorial. Ini harus tercantum sebagai bagian dari paket Anda tetapi jika Anda tidak tahu apakah itu terinstal, anda dapat mengetahui dengan menggunakan script pertama dalam tutorial ini. If you server does not support PHP you can ask your web host to install it for you as it is free to download and install. Jika server Anda tidak mendukung PHP, Anda dapat meminta web host untuk menginstal untuk Anda karena gratis untuk men-download dan menginstal. If you need a low cost web host which supports PHP I would recommmend HostRocket. Jika Anda membutuhkan web host murah yang mendukung PHP aku akan recommmend HostRocket.

Writing PHP Menulis PHP

Writing PHP on your computer is actually very simple. Menulis PHP pada komputer Anda sebenarnya sangat sederhana. You don't need any specail software, except for a text editor (like Notepad in Windows). Anda tidak memerlukan perangkat lunak specail, kecuali editor teks (seperti Notepad pada Windows). Run this and you are ready to write your first PHP script. Jalankan ini dan Anda siap untuk menulis skrip PHP pertama Anda.

Declaring PHP Mendeklarasikan PHP

PHP scripts are always enclosed in between two PHP tags. skrip PHP selalu tertutup di antara dua tag PHP. This tells your server to parse the information between them as PHP. Ini memberitahu server Anda untuk melewatkan informasi antara mereka sebagai PHP. The three different forms are as follows: Tiga bentuk yang berbeda adalah sebagai berikut:

PHP Code In Here PHP Code Di sini
?> ?>

PHP Code In Here PHP Code Di sini
php?> php?>



All of these work in exactly the same way but in this tutorial I will be using the first option (). Semua ini bekerja dengan cara yang persis sama tetapi dalam tutorial ini saya akan menggunakan pilihan pertama (?). There is no particular reason for this, though, and you can use either of the options. Tidak ada alasan khusus untuk ini, walaupun, dan Anda dapat menggunakan salah satu pilihan. You must remember, though, to start and end your code with the same tag (you can't start with for example). Anda harus ingat, meskipun, untuk awal dan akhir kode Anda dengan tag yang sama (Anda tidak dapat mulai dengan / misalnya?).

Your First Script Anda Pertama Script

The first PHP script you will be writing is very basic. Script PHP pertama Anda akan menulis sangat dasar. All it will do is print out all the information about PHP on your server. Semua itu akan lakukan adalah mencetak semua informasi tentang PHP pada server Anda. Type the following code into your text editor: Ketik kode berikut ke dalam editor teks:

phpinfo(); phpinfo ();
?> ?>

As you can see this actually just one line of code. Seperti yang Anda lihat ini sebenarnya hanya satu baris kode. It is a standard PHP function called phpinfo which will tell the server to print out a standard table of information giving you information on the setup of the server. Ini adalah fungsi PHP standar yang disebut phpinfo yang akan memberitahu server untuk mencetak tabel standar informasi memberikan Anda informasi tentang setup server.

One other thing you should notice in this example is th Satu hal lain yang harus Anda perhatikan dalam contoh ini ke
at the line ends in a semicolon. di garis berakhir dengan titik koma. This is very important. Hal ini sangat penting. As with many other scripting and programming languages nearly all lines are ended with a semicolon and if you miss it out you will get an error. Seperti banyak scripting lainnya dan bahasa pemrograman hampir semua baris yang diakhiri dengan tanda titik koma dan jika Anda tidak keluar Anda akan mendapatkan pesan kesalahan.

Finishing and Testing Your Script Finishing dan Pengujian Script Anda

Now you have finished your script save it as phpinfo.php and upload it to your server in the normal way. Sekarang Anda telah selesai naskah Anda simpan sebagai phpinfo.php dan meng-upload ke server Anda dengan cara biasa. Now, using your browser, go the the URL of the script. Sekarang, menggunakan browser Anda, pergi ke URL script. If it has worked (and if PHP is installed on your server) you should get a huge page full of the information about PHP on your server. Jika telah bekerja (dan jika PHP yang terinstal pada server Anda), Anda harus mendapatkan halaman besar penuh dengan informasi tentang PHP pada server Anda.

If your script doesn't work and a blank page displays, you have either mistyped your code or your server does not support this function (although I have not yet found a server that does not). Jika script Anda tidak bekerja dan menampilkan halaman kosong, Anda telah baik mistyped kode Anda atau server Anda tidak mendukung fungsi ini (walaupun saya belum menemukan server yang tidak). If, instead of a page being displayed, you are prompted to download the file, PHP is not installed on your server and you should either serach for a new web host or ask your current host to install PHP. Jika, bukan halaman yang ditampilkan, Anda diminta untuk men-download file tersebut, PHP tidak terpasang pada server Anda dan anda harus serach untuk host web baru atau meminta host Anda saat ini untuk menginstal PHP.

It is a good idea to keep this script for future reference. Ini adalah ide yang baik untuk menjaga script ini untuk referensi di masa mendatang.

Masukkan Komentar anda di bawah kolom ini :

Subscribe to Posts | Subscribe to Comments

Pengunjung Blog

Berita terbaru

Diberdayakan oleh Blogger.