Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

echo fread($myfile,filesize("webdictionary.txt"));

<?php
    $myfile = fopen ("webdictionary.txt" , "r") or die ("Unable to open file!");
    echo fread ("$myfile", filesize ("webdictionary.txt"));
    fclose ($myfile);
 
PREVIOUS NEXT
Tagged: #echo
ADD COMMENT
Topic
Name
3+2 =