if ($_GET['go']=="") { include('include/home_li.php'); } else { @include('include/'.$_GET['go'].'_li.php'); } ?> |
if ($_GET['go']=="") { include('include/home_re.php'); } else { @include('include/'.$_GET['go'].'_re.php'); } ?>
$sql = mysql_query("SELECT datum FROM news ORDER BY `news`.`datum` DESC LIMIT 1");
$row1 = mysql_fetch_array($sql);
$row1 = $row1[0];
$sql = mysql_query("SELECT erstellt FROM konzerte ORDER BY `konzerte`.`erstellt` DESC LIMIT 1");
$row2 = mysql_fetch_array($sql);
$row2 = $row2[0];
if ($row2>$row1) { $zeit = $row2; } else {$zeit = $row1; }
$timestamp = strtotime($zeit);
?>
© 2013 by the Julians Letzte Änderung echo date("d.m.Y", $timestamp); ?> |
|