ok, one loop has an array of data, one loop has is loaded data from a text file, but when i loaded the text file data its only displaying the first line to the array of sites which is the one array code below
$sites = array($s1,$s2,$s3,$s4,$s5,$s6,$s7,$s8,$s9,$s10,$s11,$s12);
$data = file("data.txt");
for($x=0;$x<count($data);$x++){
for($i=0;$i<count($sites);$i++){
do stuff here.
any help is greatful.