NodeJS repozitar pro 4.J pro rok 2025/2026
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
451 B

<?php
if(isset($_GET["jmeno_v_get_parametru"])){
$jmeno_v_php = $_GET["jmeno_v_get_parametru"];
} else {
$jmeno_v_php = "Eva";
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>
<?php
echo "<h1> Dobrý den, " . $jmeno_v_php . "</h1>";
?>
</div>
</body>
</html>