Advertisement
idsystems

PHP_Leccion1.6_01

Jan 19th, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <!-- Manual de PHP de WebEstilo.com -->
  2. <html>
  3. <head>
  4.    <title>Ejemplo de PHP</title>
  5. </head>
  6. <body>
  7. <?php
  8.    $a = 8;
  9.    $b = 3;
  10.    echo $a + $b,"<br>";
  11.    echo $a - $b,"<br>";
  12.    echo $a * $b,"<br>";
  13.    echo $a / $b,"<br>";
  14.    $a++;
  15.    echo $a,"<br>";
  16.    $b--;
  17.    echo $b,"<br>";
  18. ?>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement