Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title> Second Example </title>
- </head>
- <body>
- </body>
- </html>
- <?php
- $a=10;
- $b=20;
- echo "A Value :".$a;
- echo "<br>";
- echo "B Value :".$b;
- echo "<br>";
- echo "Addition : ".($a+$b);
- echo "<br>";
- echo "Subcripation : ".($a-$b);
- echo "<br>";
- echo "Multiplication : ".($a*$b);
- echo "<br>";
- echo "Division : ".($a/$b);
- echo "<br>";
- echo "Modul : ".($a%$b);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement