Thanks heaps for your help I really appreciate it. I have made the changes
you suggested but now I only get a blank screen.
function getmydate($hit)
{
$single = explode (" ",$hit);
return $single[3].$single[4];
}
$filename = ("combined_log");
//fopen ($filename, "r");
$fcontents = file($filename);
$limit = 1;
for ($i = 0; $i <= $limit; $i++)
{
$line = $fcontents[i];
if (!empty($line))
{
$currentdate = getmydate($line);
echo $currentdate;
}
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php