PHP Global Variables - Superglobals Unknown 04:53:00 0 Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available in all scopes. PHP Global Variable...
PHP Functions Unknown 04:38:00 0 The real power of PHP comes from its functions; it has more than 1000 built-in functions.
PHP switch Statement Unknown 04:26:00 0 In PHP, The switch statement is used to perform different actions based on different conditions.
PHP if...else...elseif Statements Unknown 04:25:00 0 In PHP, Conditional statements are used to perform different actions based on different conditions. PHP Conditional Statements Very...
PHP Data Types, Strings, Constant and Operator. Unknown 04:23:00 1 PHP Data Types Variables can store data of different types, and different data types can do different things.
PHP echo and print Statements Unknown 04:21:00 0 In PHP there are two basic ways to get output: echo and print.
PHP Variables Unknown 04:19:00 0 The main way to store information in the middle of a PHP program is by using a variable.
PHP Case Sensitivity Unknown 04:18:00 0 In PHP, all keywords (e.g. if, else, while, echo, etc.), classes, functions, and user-defined functions are NOT case-sensitive. ...
Comments in PHP Unknown 04:15:00 0 A comment in PHP code is a line that is not read/executed as part of the program. Its only purpose is to be read by someone who is looking ...
PHP Syntex Unknown 04:14:00 0 A PHP script is executed on the server, and the plain HTML result is sent back to the browser. Basic PHP Syntax
Array Functionality With PHP Unknown 04:13:00 0 An array stores multiple values in one single variable: Array functions are: count() , sort(), rsort() , asort() , ksort() , arsort() , ...
PHP HELLO WORLD Unknown 04:10:00 0 PHP HELLO WORLD In PHP hellow world tutorial Create a file named hello. php and put it in your web server's root directory ( DOCUME...