
$filename=str_replace($_SERVER["SCRIPT_URL"], "/Data/Presente.txt", $_SERVER["SCRIPT_FILENAME"]);
if (is_writable($filename)) {
$file = fopen ($filename, "a");
if (!$file) {
echo "Kan niet schrijven in agenda.\n ";
exit;
}
}
/*
V1 Naam event
V2 Www-url
V3 More-info
V4 Zaal
V5 Plaats
V6 Datum
V7 Tijd
*/
$start=(isset($_GET['start'])?$_GET['start']:0);
$Agenda=Array();
$Agenda=file($filename);
for ($i=1; $i
list($V1, $V2, $V3, $V4, $V5, $V6, $V7)=explode(' »»
echo(''.$V1);
if ($V2 != "") { echo(' »»'); }
echo('');
if ($V3 != "") { echo($V3.' '); }
if ($V4 != "") { echo(''.$V4.' '); }
if ($V5 != "") { echo($V5.' '); }
if ($V6 != "") { echo(''.$V6.' '); }
if ($V7 != "") { echo($V7.' '); }
echo(' '."\r\n");
}
?>
References!

|