<?php
echo "Hello, World!";
?>
Explanation:
<?php ... ?>
is used to write PHP code.echo
outputs text to the browser.- When you run this, it will display Hello, World!.
<?php
echo "Hello, World!";
?>
Explanation:
<?php ... ?>
is used to write PHP code.echo
outputs text to the browser.
Leave a Reply