test/www/public/index.php

22 lines
321 B
PHP
Raw Normal View History

2024-08-26 06:24:31 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP</title>
</head>
<body>
2024-08-30 13:24:50 +00:00
<h1>PHP nej</h1>
2024-08-26 06:24:31 +00:00
<?php
$x = 1;
$y = 2;
$sum = $x + $y;
echo "<p>$x + $y = $sum</p>";
?>
</body>
</html>