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.
27 lines
631 B
27 lines
631 B
<!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>List</title>
|
|
</head>
|
|
<body>
|
|
<h1>List</h1>
|
|
<h2><a href="/">index</a></h2>
|
|
<?php
|
|
//Kontrola zápisu
|
|
if(isset($_GET["m"])){
|
|
echo "<h1>List byl upraven </h1>";
|
|
}
|
|
|
|
//načtení souboru pro čtení
|
|
$fname = "text.txt";
|
|
$myfile = fopen($fname,"r");
|
|
echo '<div class="blog">';
|
|
echo fread($myfile,filesize($fname));
|
|
echo '</div>';
|
|
fclose($myfile);
|
|
?>
|
|
</body>
|
|
</html>
|