アットウィキロゴ

file2

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>a7</title>
</head>
<body>
<?php
$sx=0;
 
$fp = fopen("p2.txt", "r");
while ($line = fgets($fp)) {
$sx=$sx+1;
$artist[$sx]=$line;
}
 
print($artist[3]);
 
fclose($fp);
 
?>
</body>
</html>
 
最終更新:2013年12月04日 13:14