Jetzt kommt kein Fehler mehr aber er zeigt nun gar nichts an.
http://ccr.action-teamwork.de/include.php?path=galerie/test.php
http://ccr.action-teamwork.de/include.php?path=galerie/test.php
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<html>
<head>
<link href="galerie/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
img#b1 {filter: Alpha(opacity=50, finishopacity=60, style=2)}
</style>
</head>
<body>
<?
if(getrights('user')) {
echo '
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="heads" align="left" colspan="2" cellspacing="0" cellpadding="0">
<table cellspacing="0" cellpadding="3" width="100%">
<tr>
<td align="center" width="20%">
<script LANGUAGE="JavaScript">
function eKiwi() {
fenster = window.open("http://www.ccr.action-teamwork.de/galerie/ccr_upload.php","PopUp","width=450,height=300")
}
</script>
<a href="javascript:eKiwi()"><b>Upload</b></a></td>
</tr>
</table>
</td>
</tr>
</table>
<br>';
}
else {
echo '
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="heads" align="left" colspan="2" cellspacing="0" cellpadding="0">
<table cellspacing="0" cellpadding="3" width="100%">
<tr>
<td align="center" width="20%"> Du musst Registriert sein um Upzuloaden </td>
</tr>
</table>
</td>
</tr>
</table>
<br>';
}
?>
<?
$i = 0;
?>
<table border="0" cellspacing="2" cellpadding="2" width="100%">
<tr>
<?
$imagesPerPage = 10; // definiert die Anzahl der Bilder pro Seite
$countImages = 0; // Anzahl der verfügbaren Bilder, wird in while() genutzt
$showPage = is_numeric($_GET['page']) ? $_GET['page'] : 1; // wenn der GET parameter eine Zahl ist, dann diesen nutzen, ansonsten Seite 1 anzeigen
// Bereich der Bilder von ... bis
$showImagesFrom = $showPage * $imagesPerPage - $imagesPerPage;
$showImagesTo = $showPage * $imagesPerPage;
$dir = 'galerie/images/renegade/';
$handle = opendir($dir);
while(false!==($file = readdir($handle)))
{
if ($file != "." && $file != ".."&& $file != "index.php" && $file != "no-pic.gif" && $file != ".php") {
$countImages++;
if($countImages >= $showImagesFrom && $countImages < $showImagesTo)
{
echo "
<td><a href='$dir/$file' target='pic_haupt'><center><img id=\"b1\" onMouseOver=\"this.style.filter = 'none';\" onMouseOut=\"this.style.filter = 'Alpha(opacity=50, finishopacity=60, style=2)';\" width=130 height=100 border=\"0\" src=\"".$dir.$file."\"></center></a></td>";
$i++;
}
}
if ($i % 4 == 0) {
echo "</tr><tr>";
}
}
echo "</tr></table>";
closedir($handle);
// Berechnen und anzeigen der Links zu anderen "Bilderseiten"
$availablePages = ceil($countImages/$imagesPerPage);
IF($availablePages == 0 || !$availablePages) {
$availablePages == 1;
}
echo "Springe zu Seite: ";
FOR($k = 0; k <= $availablePages; $k++) {
echo '<a href="LINKZUDIESEMSCRIPTHIER-MUSSNOCHGESETZTWERDEN.php?page='.$k.'">'.$k.'</a>';
}
?>
<br>
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td class="heads" align="left" colspan="2" cellspacing="0" cellpadding="0">
<table cellspacing="0" cellpadding="3" width="100%">
<tr>
<td align="right" width="20%"><?php echo" Version: $version"?></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY></HTML>