INSTALLING
PHP is available for many operating systems and platforms. The
most common setup, however, is to use PHP as a module for the Apache web server
on a Unix machine. This section briefly describes how to install Apache with
PHP. If you're interested in running PHP on Windows you need to install LAMPP or XAMPP.
LET'S WALK WITH IT..
PHP pages are HTML pages with PHP commands embedded in them.
This is in contrast to many other dynamic web-page solutions which are scripts
that generate HTML. The web server processes the PHP commands and sends their
output (and any HTML from the file) to the browser. just take a look the example below
<html>
<head>
<title>My first PHP</title>
</head>
<body>
<?php echo 'Hello, world!' . 'My Name Is Php' ?>
</body>
</html>
the result appear below
Look the code below
<body>
<?php echo 'Hello, world!' . 'My Name Is Php' ?>
</body>
we embed php command between HTML tag <body> with giving the php tag
<?php for begin the command and end it with ?>
Judul : PHP Tutorial Series Part Two
Deskripsi : INSTALLING PHP is available for many operating systems and platforms. The most common setup, however, is to use PHP as a module for the A...