Курсовая работа: Создание программы электронного учета успеваемости студентов с дальнейшим выводом ее в Интернет
</body>
</html>
http://localhost/~student/prog/infa1.php
<?
$filename="/home/student/1/infa1.txt";
$whattoread=fopen($filename,"r") or die ("Nevizmojno otkrit fayl");
$file_contents=fread($whattoread,filesize($filename));
$new_file_contents=nl2br($file_contents);
$msg="<br>$new_file_contents";
fclose($whattoread);
?>
<html>
<head>
<title>Инструкцияпользователя</title>
</head>
<body>
<h2>Instruktsiya polzovatelya</h2>
<strong><? echo "$msg"; ?></strong>
</p><strong><a href="main.php">Наглавную</a></strong></p>
</body>
</html>
http://localhost/~student/prog/infa2.php
<?
$filename="/home/student/1/infa2.txt";
$whattoread=fopen($filename,"r") or die ("Nevizmojno otkrit fayl");
$file_contents=fread($whattoread,filesize($filename));
$new_file_contents=nl2br($file_contents);
$msg="<br>$new_file_contents";
fclose($whattoread);