PHP Assignment operator
-
In lecture 19 and 20, we will learn PHP. What is PHP? PHP originally stood for Personal Home Page. But now PHP stands for PHP Hypertext Preprocessor. PHP is an open soruce server side scripting language. For more information, Inviting you to refer lecture.
19p youcanletgo_02 07-01-2016 53 4 Download
-
HOW TO WRITE PHP SCRIPTS Combining calculations and assignment PHP offers a shorthand way of performing a calculation on a variable and reassigning the result to the variable through combined assignment operators. The main ones are listed in Table 3-3. Table 3-3. Combined arithmetic assignment operators used in PHP Operator += -= *= /= %= Example $a += $b $a -= $b $a *= $b $a /= $b $a %= $b Equivalent to $a = $a + $b $a = $a - $b $a = $a * $b $a = $a / $b $a = $a % $b Adding to an existing string The...
10p yukogaru14 30-11-2010 111 31 Download