04.06.2009, 13:27
Hi,
meinst du so etwas vielleicht?
LG
Philipp
meinst du so etwas vielleicht?
PHP Code:
function check_nach_update($filename)
{
if (file_exists($filename))
{
$lines = file($filename);
if (!$lines)
{
die ('Datei konnte nicht gelesen werden!');
}
foreach ($lines as $key => $value)
{
echo $key.' => '.$value.'\n';
}
}
else
{
die ('Datei existiert nicht!');
}
}
$filename = 'http://www.example.de/update_info.txt';
check_nach_update($filename);
LG
Philipp