BlogHide Resteemsashmanm (25)in php • 7 years ago024 PHP Operators - Type OperatorPHP Operators - "Type Operator" In this lesson PHP Operators - "Type Operator", I discussed about "Type Operators" in PHP with its application and brief description. The type operator in PHP…ashmanm (25)in php • 7 years ago023 PHP Operators - Logical OperatorPHP Operators - "Logical Operator" In this lesson PHP Operators - "Logical Operator", I discussed about "Logical Operators" in PHP with their application and brief description. PP provide…ashmanm (25)in php • 7 years ago022 PHP Operators - Array OperatorPHP Operators - "Array Operator" In this lesson PHP Operators - "Array Operator", I discussed "Array Operators" in PHP with their application and a brief description. In this lesson, I have not…ashmanm (25)in php • 7 years ago021 PHP Operators - Concatenation OperatorPHP Operators - Concatenation Operator In this lesson PHP Operators - "Concatenation Operator", I discussed about "Concatenation Operators" in PHP with their application and brief description. By…ashmanm (25)in php • 7 years ago020 PHP Operators - Increment & Decrement OperatorPHP Operators - Increment & Decrement Operators In this lesson PHP Operators - "Increment & Decrement Operators", I discussed about "Increment & Decrement Operators" in PHP. The Increment &…ashmanm (25)in php • 7 years ago019 PHP Operators - Comparison OperatorPHP Operators - Comparison Operator In this lesson PHP Operators - "Comparison Operator", I discussed about "Comparison Operators" in PHP. The Comparison Operator is also called Relational…ashmanm (25)in php • 7 years ago018 PHP Operators - Assignment OperatorPHP Operators - Assignment Operator In this lesson PHP Operators - "Assignment Operator", I discussed about "Assignment Operators" in PHP. Just recall basic Assignment in your Mathematical…ashmanm (25)in php • 7 years ago017 PHP Operators - Arithmetic OperatorPHP Operators - Arithmatic Operators In this lesson "PHP Operators - Arithmatic Operators ", I discussed about Arithmatic Operators in PHP. Just remember basic Arithmatics that you used to do in…ashmanm (25)in php • 7 years ago016 PHP OperatorsPHP Operators In this lesson "PHP Operators", I gave quick introduction about PHP Operators. In every programming languages, operators are used to manipulate or perform operations on variables…ashmanm (25)in php • 7 years ago015 PHP Data Types - ArrayPHP Data Types - Array (Please read description first before commenting.) In this lesson "PHP Data Types - Array", I discussed about the PHP Array Type, which is a data structure that contains…ashmanm (25)in php • 7 years ago014 PHP Data Types - BooleanPHP Data Types - Boolean PHP Data Types - Boolean In this lesson "PHP Data Types - Boolean", I discussed about the PHP Boolean Type, which expresses Truth Value as True or False. True…ashmanm (25)in php • 7 years ago013 PHP Data Types - Floating Point DoublePHP Data Types - Floating Point (Double) In this lesson "PHP Data Types - Floating Point (Double)", I discussed about the PHP Floating Point Data Type. We generally use decimal value or sometimes…ashmanm (25)in php • 7 years ago012 PHP Data Types - IntegerPHP Data Types - Integer In this lesson "PHP Data Types - Integer", I discussed about the PHP Integer Data Type. I discussed the type of data it can store, Minimum and Maximum range of data…ashmanm (25)in php • 7 years ago011 PHP Data Types - StringPHP Data Types - String In this lesson "PHP Data Types - String", I discussed about the PHP String Data Type. I discussed about Single Quote Strings as well as double quote strings in PHP. I also…ashmanm (25)in php • 7 years ago010 PHP Data TypesPHP Data Types In this lesson "PHP Data Types", I discussed about the PHP Data Types. The data stored inside the variable refers to a particular type. On the basis of this type, PHP performs…ashmanm (25)in php • 7 years ago009 PHP Type Casting - Implicit & Explicit CastingPHP "Type Casting" - Implicit & Explicit Casting In this lesson PHP "Type Casting" - Implicit & Explicit Casting, I discussed about the PHP Type Casting. PHP is loosely typed language, which has…ashmanm (25)in php • 7 years ago008 Variables in PHP - Part 2Variables in "PHP" - Part 2 In this lesson, I will continue my discussion on PHP Variables. PHP variables are Loosely Types and do not require you to declare their types. The variable type also…ashmanm (25)in php • 7 years ago007 Variables in PHP - Part 1Variables in "PHP" - Part 1 Variables in "PHP" This is the part one of section Variables in PHP, wherein I discussed: What are variables How to declare variables in PHP Rules in…ashmanm (25)in php • 7 years ago006 PHP CommentsIn this lesson I discussed about PHP Comments, their purpose and application. As we know how important is documenting the code, therefore, in this lessons, you will get to learn various ways to…ashmanm (25)in php • 7 years ago005 - PHP First Program - Hello World - Part 2In this lesson, I extended my discussion on embedding php code within HTML. Along with that it has also been discussed how php code is interpreted and flow of code interpretation.