Home » , , » XAMPP-WIN32 UNTUK WINDOWS

XAMPP-WIN32 UNTUK WINDOWS

Written By : Robert Aman
Updated by : berdbord at 23.43

earn

PHP Tutorial with XAMPP for Windows

Introduction

PHP adalah alat yang ampuh untuk membuat halaman Web dinamis dan interaktif.
 
Ini adalah alternatif yang dipergunakan secara luas, bebas, dan efisien untuk pesaing seperti bahasa ASP dan lain Microsoft scripting.

 
Dalam tutorial kami Anda akan belajar tentang PHP, dan bagaimana mengeksekusi script pada server Anda.




XAMPP is an easy to install Apache distribution containing MySQL, PHP and Perl. XAMPP is really very easy to install and to use - just download, extract and start.

What is PHP?
  • PHP stands for PHP: Hypertext Preprocessor
  • PHP is a server-side scripting language, like Ruby on Rails, ASP, JSP and others
  • PHP scripts are executed on the server
  • PHP is an open source software
  • PHP supports many databases (MySQL, Oracle, PostgreSQL and etc.)
  • PHP is free to download and use
  • PHP files have a file extension of ".php" or ".php3"

Why PHP?
  • PHP runs on different platforms (Windows, Linux, Unix, etc.)
  • PHP is compatible with almost all servers used today (Apache, IIS, etc.)
  • PHP is FREE to download at www.php.net
  • PHP is easy to learn and runs efficiently on the server side
What do you Need?
  • Any Text Editor like Notepad, Notepad++ and E
  • Download Full XAMPP for Windows then install it just follow the installation wizard.
Note: The default installation directory is C:\xampp and C:\xampp\htdocs is the location for the PHP file.


How to Run a PHP file using XAMPP?
  • Create a PHP file then save it to C:\xampp\htdocs directory.
  • Open your browser then type "http://localhost/Your PHP File name" or "http://I.P. Address/Your PHP File name"

Basic PHP Syntax

A PHP scripting block always starts with <?php and ends with ?>. A PHP scripting block can be placed anywhere in the document.

Example:
<?php
//Put your code here
?>


A PHP file normally contains HTML tags, Javascript and PHP scripting code.

Example:
<html>
<body>

<?php
echo " Hello World ";
?>

</body>
</html>

Each code line in PHP must end with a semicolon. The semicolon is a separator and is used to distinguish one set of instructions from another.

Note: The file must have a .php or .php3 extension else the PHP code will not be executed.


Comments in PHP
  • // to make a single-line comment
  • /* and */ to make a large comment block.
Example:
<html>
<body>

<?php

//This is a comment

/*
This is
a comment
block
*/

?>

</body>
</html>


Variable Declarations in PHP

Variables are used for storing a values, like text strings, numbers or arrays.
In PHP, a variable does not need to be declared before adding a value to it and no data type needed, PHP will automatically converts the variable to the correct data type, depending on its value.

PHP variables are start with a $ sign symbol.

Example:
$variable_name = value;


Naming Rules for PHP Variables
  • A variable name must start with a letter or an underscore "_"
  • A variable name should not contain spaces.
  • A variable name can only contain alpha-numeric characters and underscores (a-z, A-Z, 0-9, and _ )
Valid Example:
$variable_name
$VariableName
$varName
$varName1

 Selamat mencoba...


Download : XAMPP-WIN32.EXE

Authorized : Robert Aman

Kamu Telah Membaca Artikel Tentang XAMPP-WIN32 UNTUK WINDOWS. Kamu Boleh Mengcopy-Paste Atau Menyebarluaskan Artikel Ini, Tapi Jangan Lupa Untuk Meletakkan Link Dibawah Ini Sebagai Sumbernya :
Share this article :
0 Comments
Komentar

0 comments:

Speak up your mind

Tell us what you're thinking... !

Related Posts Plugin for WordPress, Blogger...
English French German Spain Italian Dutch Japanese
 
Support : berdbord | Bceceran
Copyright © 2013. berdbord - All Rights Reserved
berdbord 2013