My second window is reporting that it is connection is active and the first one i need to refresh the values that are coming from the server. I know i can use a javascript to do that, something like:
echo "<Script language=\"javascript\">
parent.frames['mainFrame'].location.href =\"../php/teste.php\";
</script>";
but this code will refresh the page in my second one browser window. I need to reference the first one window. something like:
echo "<Script language=\"javascript\">
window.firstonewindow.frames['leftFrame'].location.href =\"../html/leftbardev.html\";
</script>";
i know it doesnt work. but i just need to find a way to reference the first window.
Thanks again.