<?php
//Open input file, read file into array
//$D = file("requestData.txt");
$D = file("AIEI-261.dat");
//for each element in the array
foreach ($D as $value) {
// echo "Value $value<br>\n";
$dataStr = "http://aiei.ifas.ufl.edu/ingest/ingest.php?observation=".urlencode($value);
// http://aiei.ifas.ufl.edu/lakinsert.php?observation=".urlencode($value);
echo urlencode($dataStr);
//cancadinate the post and the data
$str=file_get_contents($dataStr);
echo $str;
}
?>