Comparison Operators in HindiComparison Operators में आठ प्रकार के Operators होते है |OperatorsDescription<Less than>Greater than<=Less than or Equal to>=Gretaer than or Equal to==Equal to===Equal to!=Not Equal to!==Not Equal toExample for <(Less than)Source Code :12345678<?php$a = 10; $b = 6;if($a < $b) echo "a is less than b";else...
05 November, 2018
Comparison Operators in Hindi
Programing Coderfunda
November 05, 2018
Comparison-Operators-php, hindi-php, php
No comments
Comparison Operators in Hindi
Comparison Operators में आठ प्रकार के Operators होते है |
OperatorsDescription
<Less than
>Greater than
<=Less than or Equal to
>=Gretaer than or Equal to
==Equal to
===Equal to
!=Not Equal to
!==Not Equal to
Example for <(Less than)
Source Code :
12345678<?php
$a = 10;
$b = 6;
if($a < $b)
...
Arithmetic Operators in Hindi
Programing Coderfunda
November 05, 2018
Arithmetic-Operators-Php, hindi-php, php
No comments
Arithmetic Operators में पांच प्रकार के Operators होते है |OperatorsDescription+Addition-Subtraction*Multiplication/Division%ModulusExample for Addition(+)Source Code :123456<?php$a = 10; $b = 4;$c = $a + $b;echo "Addition of ".$a." and ".$b." is ".$c;?>Output :Addition of 10 and 4 is 14Example for Subtraction(-)Source Code :123456<?php$a...
Arithmetic Operators in Hindi
Programing Coderfunda
November 05, 2018
Arithmetic-Operators-Php, hindi-php, php
No comments
Arithmetic Operators में पांच प्रकार के Operators होते है |
OperatorsDescription
+Addition
-Subtraction
*Multiplication
/Division
%Modulus
Example for Addition(+)
Source Code :
123456<?php
$a = 10;
$b = 4;
$c = $a + $b;
echo "Addition of ".$a." and ".$b." is ".$c;
?>
Output :
Addition of 10 and 4 is 14
Example for Subtraction(-)
Source...