Thanks again for expanding on that it works great:
<?php
$open_file=fopen("tempfile.txt","r");
while(! feof ($open_file)) $string=fread($open_file,1000000);
echo $string;
?>
, however is there a way of exploding the $string to get rid of the deliniator '|'
I tried :
<?php
"your code"
$info = explode('|', $string);
echo"$info";
?>
Which gives me my old adversay Array. I need the deliniator in so I can echo the information back into a form at a later date, which I've cracked I just need display the tempfile without the '|' in it. How would I incorporate 'explode' into the code you (kindly) provided to achieve this? I'm trying not to take the 'p*ss' seeking by seeking loads of help on this, everyones time is appreciated.
Cheers John