Basics of PHP syntax
<!DOCTYPE html>
<html>
<head>
<title>PHP Example</title>
</head>
<body>
<?php
// PHP code goes here
echo "Hello, World!";
?>
</body>
</html><?php
// PHP code goes here
echo "Hello, World!";
?>Last updated