PHP Home Virtual Asistant November 27, 2017PHP 5 Tutorial PHP is a server scripting language, and a powerful tool for making dynamic and interactive Web pages. PHP is a widely-used, f... Read more
PHP Intro Virtual Asistant November 27, 2017PHP 5 Introduction PHP scripts are executed on the server. What You Should Already Know Before you continue you should have a basic understa... Read more
PHP Installation Virtual Asistant November 27, 2017PHP 5 Installation What Do I Need? To start using PHP, you can: Find a web host with PHP and MySQL support Install a web server on your own ... Read more
PHP Syntax Virtual Asistant November 27, 2017PHP 5 Syntax A PHP script is executed on the server, and the plain HTML result is sent back to the browser. Basic PHP Syntax A PHP script ca... Read more
PHP Variables Virtual Asistant November 27, 2017PHP 5 Variables Variables are "containers" for storing information. Creating (Declaring) PHP Variables In PHP, a variable starts w... Read more
PHP Echo/Print Virtual Asistant November 27, 2017PHP 5 echo and print Statements In PHP there are two basic ways to get output: echo and print. In this tutorial we use echo (and print) in a... Read more
PHP Data Types Virtual Asistant November 27, 2017PHP 5 Data Types PHP Data Types Variables can store data of different types, and different data types can do different things. PHP supports... Read more
PHP Strings Virtual Asistant November 27, 2017PHP 5 Strings A string is a sequence of characters, like "Hello world!". PHP String Functions In this chapter we will look at som... Read more
PHP Constants Virtual Asistant November 27, 2017PHP 5 Constants Constants are like variables except that once they are defined they cannot be changed or undefined. PHP Constants A consta... Read more
PHP Operators Virtual Asistant November 27, 2017PHP 5 Operators PHP Operators Operators are used to perform operations on variables and values. PHP divides the operators in the following ... Read more
PHP If...Else...Elseif Virtual Asistant November 27, 2017PHP 5 if...else...elseif Statements Conditional statements are used to perform different actions based on different conditions. PHP Condit... Read more
PHP Switch Virtual Asistant November 27, 2017PHP 5 switch Statement The switch statement is used to perform different actions based on different conditions. The PHP switch Statement U... Read more
PHP While Loops Virtual Asistant November 27, 2017PHP 5 while Loops PHP while loops execute a block of code while the specified condition is true. PHP Loops Often when you write code, yo... Read more
PHP For Loops Virtual Asistant November 27, 2017PHP 5 for Loops PHP for loops execute a block of code a specified number of times. The PHP for Loop The for loop is used when you know in a... Read more
PHP Functions Virtual Asistant November 27, 2017PHP 5 Functions The real power of PHP comes from its functions; it has more than 1000 built-in functions. PHP User Defined Functions Besid... Read more
PHP Array Virtual Asistant November 27, 2017PHP 5 Sorting Arrays The elements in an array can be sorted in alphabetical or numerical order, descending or ascending. PHP - Sort Functio... Read more
PHP Superglobals Virtual Asistant November 27, 2017PHP 5 Global Variables - Superglobals Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available in a... Read more