Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 2
改行タグ追加 | PHP

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 27

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 27
 
トップページ >  PHP >  改行タグ追加
初版2008/11/21: 最終更新日2008/11/21
改行タグ追加
目次
改行タグ追加
サンプルコード
サンプル
改行タグ追加
nl2br関数を使うと、テキストボックスやテキスト領域の文字列上の改行コードの前に<br>タグを追加できます。
これによって、Webブラウザ上でも改行されて複数行が表示されます。

こちらにもnl2brについて記述しています。
以下がサンプルになります。

サンプルコード
(php部)
<?php
// 「送信」ボタンが押された時
if (isset($_POST[btnExec])) {
	// 改行タグ追加
	$memo_br = nl2br($_POST[memo]);
	print "<table>
		<tr>
			<td colspan='2' valign='top'>そのまま表示 : </td>
			<td>$_POST[memo]</td>
		</tr>
		<tr>
			<td colspan='2' valign='top'>改行コードを追加した場合 : </td>
			<td>$memo_br</td>
		</tr>
	</table>";
}
?>

(html部)
<form method="post">
	<textarea cols="40" rows="6" name="memo"></textarea>
	<input type="submit" name="btnExec" value="送信">
</form>

サンプル

メッセージを入力し、「送信」ボタンを押します。






改行コードを追加した形で表示されます。↓


Warning: Use of undefined constant btnExec - assumed 'btnExec' (this will throw an Error in a future version of PHP) in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 113

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 140

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/process/nl2br/nl2br.php on line 140