Define image:
1.) One you create using the GD functions with PHP
2.) An image already on your server you just need to show for a few moments
If it's a dynamic image (one made with GD) then you have to have a script that will make the image, and another script that will print out the <img> tag for it. Basically, the image creation script will make your image, then output a header with "Content-Type: image/png" (or whatever format you choose) and the other script will have the <img> tag with it's src attributed pointed to your image creation script.
The other alternative is just to use a plain old <img> tag with the src attribute pointed to the local file.
Now, you can "refresh" or send the browser elswhere one of two ways:
Meta method
You can use a meta header tag to send the browser elsewhere after a specified time:
<meta http-equiv="REFRESH" content="5;http://www.mydomain.com/members/" />
Javascript Method
You can use the window.location to send the window anywhere you want. You can specify a default pause period by using the setTimeout() function.
setTimeout('goAhead()', 5000); // Go after 5 seconds
function goAhead() {
window.location = "http://www.mydomain.com/members/";
}
So, exactly what is it you want to do? Anything you're trying to emulate?