Ég er að reyna að gera next/previous fyrir myndasafnið mitt og það er ekki alveg að virka… ég er með það svona, sem er eitthvað vitlaust hjá mér:

[?php
if ($dir = @opendir('myndir/other')) {
while($entry = readdir($dir)) {
if($entry != “.” && $entry != “..” && $entry != “index.php” && $entry != “index.htm”) {
$files[] = $entry;
}
}
for($i = 0; $i < count($files); $i++)
$current = current($files);
$next = next($current);
echo "[a href=skodamynd.php?skoda=myndir/other/$next]Næsta mynd";
}
?]

Ég er með array sem heitir $files og hann listar allar myndirnar en nú þarf ég að fá next/previous. Einhver?

<br><br>——————————
<i>Design is what you make of it</i>
Guðjón Jónsson
<a href=mailto:acid@simnet.is>acid@simnet.is</a>
<a href=http://www.cooltech.is/intenz>http://www.cooltech.is/intenz</a
Gaui