HTMLify
Add-Two-No.php
Views: 489 | Author: djdj
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <?PhP // php is case insensitive programming lang. //with three variable $a = 10; $b = 5; $c = $a + $b; EcHo ($c); //for next line echo "\n" ; //with only two variable $x = 50; $y = 4; echo $x + $y; ?> |