Mega Code Archive

 
Categories / Php / File Directory
 

Fread php

<?php    $file = "data.txt";    $fh = fopen($file, "rt");    $userdata = fread($fh, filesize($file));    fclose($fh); ?>