Hope is a Dream. Dream is a Hope.

非公開ブログは再開しました。

いきおいでPHPを勉強する。その13

Webサイトの内容を表示する

<html>
<head>
<title>Webサイトの内容を表示する</title>
</head>
<body>
<p>Webサイトの内容を表示する</p>

<style>
    #frm1{
        background-color: #f0f0f0;
        margin-bottom: 40px;
    }
</style>

<div id="frm1">
    <?php
    // URL
    // $url = "http://www.********.com/";
    $url = "http://hikaru-sakihama.fififactory.com/www/coding/top.shtml";
    // 取り込んだページの内容を表示する
    readfile($url);
    ?>
</div>

</body>
</html>