PHP 5 Tutorial Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Tutorial ❮ Home Next ❯ PHP is a server scripting language, and a powerful tool for making dynam... Read More Read more No comments:
PHP 5 Introduction Mussa Baujiti April 15, 2019 0 Comments PHP 5 Introduction ❮ Previous Next ❯ PHP scripts are executed on the server. What You Should Already Know Before you continue you sho... Read More Read more No comments:
PHP 5 Installation Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Installation ❮ Previous Next ❯ What Do I Need? To start using PHP, you can: Find a web host wit... Read More Read more No comments:
PHP 5 Syntax Mussa Baujiti April 15, 2019 0 Comments TUTORIAL HOME PHP 5 Syntax ❮ Previous Next ❯ A PHP script is executed on the server, and the plain HTML result is sent back to the br... Read More Read more No comments:
PHP 5 Variables Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Variables ❮ Previous Next ❯ Variables are "containers" for storing information. Creat... Read More Read more No comments:
PHP 5 echo and print Statements Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 echo and print Statements ❮ Previous Next ❯ In PHP there are two basic ways to get output: echo... Read More Read more No comments:
PHP 5 Data Types Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Data Types ❮ Previous Next ❯ PHP Data Types Variables can store data of different types, and di... Read More Read more No comments:
PHP 5 Strings Mussa Baujiti April 15, 2019 0 Comments PHP 5 Strings ❮ Previous Next ❯ A string is a sequence of characters, like "Hello world!". PHP String Functions In this cha... Read More Read more No comments:
PHP 5 Constants Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Constants ❮ Previous Next ❯ Constants are like variables except that once they are defined they... Read More Read more No comments:
PHP 5 Operators Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Operators ❮ Previous Next ❯ PHP Operators Operators are used to perform operations on variables... Read More Read more No comments:
PHP 5 if...else...elseif Statements Mussa Baujiti April 15, 2019 0 Comments PHP 5 if...else...elseif Statements ❮ Previous Next ❯ Conditional statements are used to perform different actions based on differen... Read More Read more No comments:
PHP 5 switch Statement Mussa Baujiti April 15, 2019 0 Comments TUTORIAL HOME PHP 5 switch Statement ❮ Previous Next ❯ The switch statement is used to perform different actions based on different condi... Read More Read more No comments:
PHP 5 for Loops Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 for Loops ❮ Previous Next ❯ PHP for loops execute a block of code a specified number of times.... Read More Read more No comments:
PHP 5 while Loops Mussa Baujiti April 15, 2019 0 Comments PHP 5 while Loops ❮ Previous Next ❯ PHP while loops execute a block of code while the specified condition is true. PHP Loops Often wh... Read More Read more No comments:
PHP 5 Functions Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Functions ❮ Previous Next ❯ The real power of PHP comes from its functions; it has more than 10... Read More Read more No comments:
PHP 5 Sorting Arrays Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Sorting Arrays ❮ Previous Next ❯ The elements in an array can be sorted in alphabetical or nume... Read More Read more No comments:
PHP 5 Arrays Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Arrays ❮ Previous Next ❯ An array stores multiple values in one single variable: Example <?p... Read More Read more No comments:
PHP 5 Global Variables - Superglobals Mussa Baujiti April 15, 2019 0 Comments PHP 5 Global Variables - Superglobals ❮ Previous Next ❯ Superglobals were introduced in PHP 4.1.0, and are built-in variables that ar... Read More Read more No comments:
PHP 5 Form Handling Mussa Baujiti April 15, 2019 0 Comments Toggle navigation TUTORIAL HOME PHP 5 Form Handling ❮ Previous Next ❯ The PHP superglobals $_GET and $_POST are used to collect form-... Read More Read more No comments: