I want to refrsh a frame from another fram on the same page. Everytime the botom frame is refreshed I would like it to refresh the top frame... I tryed this but no luck
<body onload="javascript:mainFrame.location.reload()">
And where's the PHP question? 🙂
Diego
Try
parent.document.getElementById('yourFrameID').location.reload();
or
parent.frames['yourFrameName'].location.reload();
(You'll need to add an id attribute to the appropriate frame tag for the first one, and a name attribute for the second)