アットウィキロゴ

php 54

<!DOCTYPE html>
 
<html>
    <head>
        <meta charset="UTF-8">
        <title>abc</title>
    </head>
    <body>
 
 <?php
$fp = fopen("data.txt", "r");
while ($line = fgets($fp)) {
echo "$line";
}
fclose($fp);
        ?>
    </body>
</html>
 
最終更新:2015年07月17日 04:39