<!DOCTYPE html>
<html>
<body>

<?php
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
// Êä³öµ¥×Ö·ûÖ±µ½ end-of-file
while(!feof($myfile)) {
   echo fgetc($myfile);
}
fclose($myfile);
?>

</body>
</html>