Latest Tutorials

Example of $_POST form submission with letter, number, email and URL filters

<?php     // variables preset     $nameval = $ageval = $emailval = $urlval = "";     $name = $age = $email = $url = "";

Example of working with BZIP in PHP

<?php     $file = "/path/example.bz2";     $str = "A test string<br />";     $bz = bzopen($file, "w"); //...

Example of working with ZIP in PHP

<?php     $zip = new zipArchive();     $file = "/path/file.zip";          if ($zip ->open($file, zipArchive...

PHP references - PHP installation

PHP may be installed on many serving systems, and the list below shows those used most often.

PHP references - PHP predefined constants

PHP includes many predefined constants that may be used as global variables across the script. 

PHP references - PHP predefined variables

PHP includes many predefined variables that may be used as global variables across the script. 

PHP references - data types

PHP describes numerous data types to be used. Those are listed below:

PHP references - operator types

List of...

PHP references - PHP general statements

There are integrated statements that PHP uses to facilitate and speed up the script execution.