Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Manual de PHP de WebEstilo.com -->
- <html>
- <head>
- <title>Ejemplo de PHP</title>
- </head>
- <body>
- <?php
- $a = 8;
- $b = 3;
- echo $a + $b,"<br>";
- echo $a - $b,"<br>";
- echo $a * $b,"<br>";
- echo $a / $b,"<br>";
- $a++;
- echo $a,"<br>";
- $b--;
- echo $b,"<br>";
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement