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 = 1;
- $b = 3.34;
- $c = "Hola Mundo";
- echo $a,"<br>",$b,"<br>",$c;
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement