PHP nl2br


nl2br

▪️nl2br
Stringに含まれる全ての改行文字の前に<br />又は<br>を挿入して返す

file_get_contents(ファイル名)

▪️file_get_contents(ファイル名)
ファイルの中身を全て読み込む

▪️indexbbs.php

indexes.php
<!-- http://localhost:8888/tennis/indexbbs.php -->

<?php
// include 'includes/loginbbs.php';
// file_get_contents→ファイルの中身を全て読み込む
$info = file_get_contents ( "info.txt" );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xm1ns="http://www.w3.org/1999/xhtml">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript">


    <title>掲示板</title>

</head>
<body>
    <h1>テニスサークル交流サイト</h1>
    <p>
        <a href="albumbbs.php">アルバム</a>
    </p>
    <p>
        <a href="bbs.php">掲示板</a>
    </p>
    <h2>お知らせ</h2>
    <?php echo nl2br($info, false); ?>
</body>
</html>

▪️info.txt
ミーティングの日程について
日時:9月15日20時
場所:102教室
議題:コートの使用曜日について
筆記用具を持参してください

⇩ドキュメントルート内のtennisフォルダの中に「info.txt」
 という名前で保存する

▪️実行結果

ドキュメントルート

webサーバーが外部に公開するファイルなどが置かれたフォルダ/ディレクトリ。
そのサーバーにアクセスした時の最上位フォルダ/ディレクトリがそこになる
(「http://ホスト名/」にあたる場所)。

http://localhost:8888/
でドキュメントルートを開ける。