Mega Code Archive

 
Categories / Php / Data Type
 

Add the two integer values and print the result

<? $a = 85; $b = 24; echo "<P>Original value of \$a is $a and \$b is $b</P>"; $c = $a + $b; echo "<P>Added \$a and \$b and got $c</P>"; ?>