PHP 8.3.1 - Interpreter
RUN CODE ❯
(shift+enter)
PHP Tutorials
<?php /* Shows how to embed PHP code into HTML and display its output. */ ?> <!DOCTYPE html> <html> <head> <title>PHP Test</title> </head> <body> <h1>PHP Code Output</h1> <p> <?php echo "Hello world, I'm a <strong>PHP</strong> script embedded in HTML!"; ?> </p> </body> </html>
/
Response
Preview