Hi I am trying to use the data feeds from these sites, both are identical for some reason Anyway the documents say that each field is seperated with a TAB. I am using the following code but all I get is the full line. Can anyone help. <?php $file = fopen("http://www.getafreelancer.com/affiliates/liam1412/all.txt","rt"); while(!feof($file)) { $line = fgets($file); $parts = explode('\t',$line); print $parts[0].'<br /><br />'; } ?> PHP: Thanks