';
if(isset($_GET['eventId'])) {
$out = $_GET["eventId"];
} else { $out = '186'; }
// echo 'hier war es die ID '.$out;
// $out = '186';
$db_table = "rex_article";
$sql = rex_sql::factory();
// $sql->debugsql = 1; //Ausgabe Query
$sql->setQuery('
SELECT haEvent.*, haBishopric_name, haBishopric_province FROM haEvent
JOIN haBishopric on haBishopric.haBishopric_id = haEvent.haBishopric_id
WHERE haEvent.haEvent_id = '.$out.'
');
$ausgabe = '
';
for($i=0; $i<$sql->getRows(); $i++)
{
$erzbistum = $sql->getValue('haBishopric_name');
$bistum = $sql->getValue('haBishopric_province');
$datetime = $sql->getValue('haEvent_datetime');
$date = new DateTime($datetime);
$datum = $date->format('d. m. Y, H:i').' Uhr';
$titel = $sql->getValue('haEvent_title');
$desc = $sql->getValue('haEvent_description');
$url = $sql->getValue('haEvent_url');
$link = $sql->getValue('haEvent_urlTitle');
$ausgabe .= '
Termin
';
$ausgabe .= '
'.$titel.'
';
if ($erzbistum == $bistum) {
$ausgabe .= '
Erzbistum '.$erzbistum.'
'; }
else { $ausgabe .= '
Bistum '.$bistum.'
'; }
$ausgabe .= '
Datum: '.$datum.'
';
$ausgabe .= '
'.$desc.'
';
$ausgabe .= '
'.$link.'
';
$sql->next();
}
$ausgabe .= '
';
echo $ausgabe;
echo 'Der Termin wurde veröffentlicht in der App
Ehe.Wir.Heiraten. der AKF - Arbeitsgemeinschaft für katholische Familienbildung e.V.';
echo '