Hallo Leute,
da ich schon einige male hier geholfen wurde,
hoffe ich nun auf weitere Hilfe.
Ich habe mir eine Galerie gebaut die aus ein Ordner Bilder ausliest und wieder geben tut.
Bilder pro Zeile ist darin einstell bar.
Nun möchte ich aber zusätzlich bilder pro Seite festlegen können.
Das heißt sagen wir 10 Bilder pro Seite und unten sollen dann die Seiten anzahlen stehen wo man drauf klicken kann.
Hier ist mein Code für die Bilder Anzahl Berechnung:
images.php
Ich habe diesen in eine funktion drin stehen,
weil ich diese funktion abfrage auf der hauptseite.
Hier der code um die bilder anzuzeigen:
test.php
Bitte helft mir ich bin am verzweifeln.
da ich schon einige male hier geholfen wurde,
hoffe ich nun auf weitere Hilfe.
Ich habe mir eine Galerie gebaut die aus ein Ordner Bilder ausliest und wieder geben tut.
Bilder pro Zeile ist darin einstell bar.
Nun möchte ich aber zusätzlich bilder pro Seite festlegen können.
Das heißt sagen wir 10 Bilder pro Seite und unten sollen dann die Seiten anzahlen stehen wo man drauf klicken kann.
Hier ist mein Code für die Bilder Anzahl Berechnung:
images.php
PHP:
function ren() {
$filename = $_SERVER['PHP_SELF'];
$verz=opendir('galerie/images/renegade/');
$link = array ();
while ($file = readdir ($verz))
{
if($file != "." && $file != ".." && $file != "index.php" && $file != "no-pic.gif" && $file != $filename)
{
array_push ($link, "$file");
}
}
$anzahl = count($link);
echo "Es gibt $anzahl Bilde(r)<br>";
}
Ich habe diesen in eine funktion drin stehen,
weil ich diese funktion abfrage auf der hauptseite.
Hier der code um die bilder anzuzeigen:
test.php
PHP:
<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>
<?
$dir = 'galerie/images/renegade/';
$handle = opendir($dir);
while(false!==($file = readdir($handle)))
{
if ($file != "." && $file != ".."&& $file != "index.php" && $file != "no-pic.gif" && $file != ".php") {
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);
?>
<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>
Bitte helft mir ich bin am verzweifeln.