Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

PHP File Open/Read/Close

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