I used this to write a array into a text file:
$fp = fopen('file.txt', 'w');
fwrite($fp, print_r($newStrings, TRUE));
fclose($fp);
now i want to read it back in php just like i would read a normal array? how do i do it? I'm fairly new to this and im currently on a deadline to get something related tot this fixed, pls help.