reloading a frame on a timer

I

Ike

Suppose I have two frames, as shown in the script below. One of the frames,
I would like to have reload every ten minutes or so. Hower, the frame I wish
to reload is a php script, which executes and creates a png image which gets
displayed directly to the browser frame (therefore, the image is NOT written
to the server itself, and the page that gets displayed in the frame I wish
to update is a png image mime type).

How can I amend my script in my page which holds the frameset (i.e. the
parent) such that only one particular frame is updated at a fixed interval?

Thanks, Ike

<frameset rows="10%,90%>
<frame src="ggtab1a.php" name="main" scrolling="no" noresize
FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 marginwidth="1"
marginheight="1">
<?php
echo "<frame src=\"reports/homepages/" . $username.".php\" ";
?>
name="work1" FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 marginwidth="0"
 
M

Mike Discenza

CountScubula said:
I think something like this could benifiet you:
http://gzen.myhq.info/test/time.php

example source shown here:
http://www-4.gzentools.com/snippetview.php?c=Concepts&v=time.php

Not too hard to pull off. I've got something that does this myself, but it
reads and displays a log file.

Use some JavaScript. It works wonderfully.

(Might not work as is)
function reloadWindow(frameNameOrIndex)
{parent.frames[frameNameOrIndex].location.href =
parent.frames[frameNameOrIndex].location;}

function reloadKickOff(minutesToReload,frameNameOrIndex)
{
secondsToReload = 60 * minutesToReload;
setTimeOut(reloadWindow(frameNameOrIndex),10);
}

Stick that in a javascript block in one of the frames and call the
reloadKickOff function.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Frame Changes it's fixed size 0
repainting a frame 1
Frame Resizing 4
problems wit frames 2
Disappearing frame 2
Getting the width of a frame 4
Hyperlink & Frames 1
Refresh a Frameset 0

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,575
Members
45,053
Latest member
billing-software

Latest Threads

Top