Advertisement
idsystems

PHP_Leccion1.5_01

Jan 19th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 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 = 1;
  9.    $b = 3.34;
  10.    $c = "Hola Mundo";
  11.    echo $a,"<br>",$b,"<br>",$c;
  12. ?>
  13. </body>
  14. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement