アットウィキロゴ

file

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>a7</title>
</head>
<body>
<?php
 
$fp = fopen("p.txt", "r");
while ($line = fgets($fp)) {
  echo $line;
}
fclose($fp);
 
?>
</body>
</html>
 
最終更新:2013年12月04日 13:03