Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title></title>
- </head>
- <body>
- <h1>Practica 7</h1>
- <?php
- $a=3;
- $b=1.58;
- $c="cookie";
- $d="true or false";
- echo "Variable tipo integer: <font color='blue'>",$a,"</font><br>";
- echo "Variable tipo double: <font color='blue'>",$b,"</font><br>";
- echo "Variable tipo string: <font color='blue'>",$c,"</font><br>";
- echo "Variable tipo boolean: <font color='blue'>",$d,"</font><br>";
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement