1$myfile= fopen("welcom.txt","w");
2echo fwrite($myfile, filesize("welcom.txt"));
3fclose($myfile);
1<?php
2 $myfile = fopen ("webdictionary.txt" , "r") or die ("Unable to open file!");
3 echo fread ("$myfile", filesize ("webdictionary.txt"));
4 fclose ($myfile);