hi
i am using of this code to open file. but it can not open arz.txt because it has large size (34 Kš. when i use of smaller size file this code can open file.
$filename2 = 'data/arz.txt';
$fp2 = fopen($filename2, "r");
$content= fread($fp2, filesize($filename2));
fclose($fp2);
how do i can open this file (34 Kš for get it content?
also i used of file_get_content() but this function did not work either.
thanks