如何从其他网页显示文字?

时间:2016-04-17 08:40:46

标签: php html

我看到网页能够将文字关闭http://assetgame.roblox.com/game/GetAuthTicket

我正在尝试做同样的事情,但它没有成功。任何修复?

<!DOCTYPE html>
<html>
    <head>
        <title>Nothing</title>
    </head>
    <body>
        <p>Sorry, this webpage isn't completed yet.</p>
        <?php
            $domain = 'http://assetgame.roblox.com/game/GetAuthTicket';
            $handle = fopen($domain, 'r');
            $content = stream_get_contents($handle);
            fclose($handle);
            echo "<textarea rows='20' cols='80'>$content</textarea>";
        ?>
    </body>
</html>

0 个答案:

没有答案