Online PHP Compiler
PHP
PHP Code Editor
Run Code
<!DOCTYPE html> <html> <head> <title>My Page</title> <style> body { font-family: Arial; text-align: center; } h1 { color: #2c3e50; } </style> </head> <body> <h1>Hello, World!</h1> <?php // PHP code can be mixed with HTML echo date('Y-m-d'); ?> </body> </html>
Output
Result
Source