refresh page with new image
I have a simple readdir that I am using to set up a gallery type page.
I have the readdir printing a link for each image in that specific dir, now I want to display an image on this page, and have each of my generated links refresh the page, and switch out the image.
I have seen code that uses basename($PHP_SELF), but I'm not sure how this would apply.
here is the line I want to apply this too
PHP:<?php
print "<a href=\"$files\">$bandname$mycount</a><br>";
?>

