PHP

This tutorial presents four PHP programs that introduce PHP programming concepts, including comments, variables, operators, keywords, type conversions, scripting delimiters, interpolation, string concatenation, control statements and arrays. The techniques you learn hear are used in our subsequent tutorials:
[Note: This tutorial is an excerpt (Section 26.2) of Chapter 26, PHP, from our textbook Internet & World Wide Web How to Program, 3/e. This tutorial may refer to other chapters or sections of the book that are not included here. Permission Information: Deitel, Harvey M. and Paul J., INTERNET & WORLD WIDE WEB HOW TO PROGRAM, 3/E, ©2004, pp.900-909. Electronically reproduced by permission of Pearson Education, Inc., Upper Saddle River, New Jersey.]
26.2 Introduction to PHP Programming
The power of the Web resides not only in serving content to users, but also in responding to requests from users and generating Web pages with dynamic content. Interactivity between the user and the server has become a crucial part of Web functionality. While other languages can perform this function as well, PHP was written specifically for interacting with the Web.
PHP code is embedded directly into XHTML documents. This allows the document author to write XHTML in a clear, concise manner, without having to use multiple print statements, as is necessary with other CGI-based languages. 
PHP script file names usually end with .php, although a server can be configured to handle other file extensions. To run a PHP script, PHP must first be installed on your system. PHP 4.3.3 is available on the CD-ROM accompanying this book. Please refer to the PHP installation and configuration instructions available on the CD-ROM. The most recent version of PHP always can be downloaded from

    www.php.net/downloads.php

and the latest installation instructions are available at

    www.php.net/manual/en/installation.php

Although PHP can be used from the command line, a Web server is necessary to take full advantage of the scripting language. Before continuing, please copy the .php.html and .txt files and the images directory from the Chapter 26 examples directory on the CD-ROM to the Web server's root directory (e.g., C:\Inetpub\wwwroot for IIS or C:\Program Files\Apache Group\Apache2\htdocs for Apache). 
Simple PHP Program
Figure 26.1 presents a simple PHP program that displays a welcome message.

1   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3   
4   <!-- Fig. 26.1: first.php -->
5   <!-- Our first PHP script -->
6   
7   <?php 
8      $name = "LunaTic"; // declaration
9   ?> 
10   
11   <html xmlns = "http://www.w3.org/1999/xhtml">
12      <head>
13          <title>A simple PHP document</title>
14       </head>
15   
16       <body style = "font-size: 2em">
17          <p>
18            <strong>
19   
20                <!-- print variable name's value -->
21               Welcome to PHP, <?php print( "$name" ); ?>!
22             </strong>
23          </p>
24       </body>
25   </html>


No comments:

Comment

Comment Box is loading comments...