Summary  Summary

Add to your favorites

Maps  Maps
Portal  Portal
Geomatic  Geomatic
Computers  Computers
Download  Download
Jobs  Jobs

Customize  Customize
Games  Games
Forums  Forums
GuestBook  GuestBook

CW GIS  CW GIS
GeoRezo  GeoRezo
Georama  Georama




18.119.107.161
Web design
Daniel FAIVRE©
|

pHp

  Français Français 
Introduction
The PHP language
 Introduction
   Php is a server-side interpreted language. It generate dynamic web pages, particurlarly from a database. Its syntax come from C, Java, and Perl, with some inedite functions. You can include php-code in your HTML code.
 The PHP language

   Php is constituted by instructions associated together in a function, a script, or a page with extension .php, and of comments.

Comments

   It's ALWAYS necessary to comment your code, at least to read it after six months ...
   Comments may begins by// or by # and ends at the end of line, like this:

// After the tenth rewriting, a well-commented code is always better!
#--- and it's possible to embed a comment like this ...

   A several-lines comment is quoted by /* at the beginning and */ at the end:

/*After the eleventh rewriting, a well-commented code may become far better!
Isn't it ?*/

Instructions

   Php instructions MAY be included in HTML code like this:

<BODY>
<?PHP
    = "Hello!";
    = 2 + 2;
?>
</BODY>