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.
26 lines
591 B
26 lines
591 B
<?php
|
|
$title = "List hodnocení"
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo $title; ?></title>
|
|
</head>
|
|
<body>
|
|
<h1><?php echo $title; ?></h1>
|
|
<?php include("menu.php"); ?>
|
|
<?php
|
|
$myfile = fopen("rating.txt","r");
|
|
echo fread($myfile,filesize("rating.txt"));
|
|
fclose($myfile);
|
|
|
|
?>
|
|
<hr>
|
|
<div class="footer">
|
|
Škrabánek @ 2022y
|
|
</div>
|
|
</body>
|
|
</html>
|