1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHP nl2br

Last updated at Posted at 2016-08-30

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」
 という名前で保存する
スクリーンショット 2016-08-30 17.39.58.png

▪️実行結果
スクリーンショット 2016-08-30 17.53.05.png

ドキュメントルート

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

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

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?