Quick actions

cmd+k|ctrl+k

Navigation

Languages

ファイルの読み込み2

Snippet info

Language

Php

Visibility

public

Author

aizawa

Created

2017-01-10T01:59:19Z

Updated

2017-01-10T09:03:17Z

    <?php $info = file_get_contents("info.txt"); ?>
    <html>
    <head>        
        <meta http-equiv="Content-Type" content="text/html";>
        <title>テニスサークル交流サイト</title>
    </head>
    <body>
        <h1>テニスサークル交流サイト</h1>
        <h2>お知らせ</h2>
        <?php echo nl2br($info,false); ?>
    </body>
    </html>
INFO