as soon as the page loads, i want it to redirect a page in a different frame. how do i do this? php, javascript, anything.
You could probably use javascript. PHP wouldnt be able to do it. And you could also use Html.
sorry, i wasnt asking which format to use, i was asking for teh script on how to do it.
Something like
<SCRIPT LANGUAGE="JavaScript"> <!-- Début top.FRAME_NAME.location.href = "http://....."; // Fin --> </SCRIPT>
But I'm not sure... makes too much time I did not work with frames...
<script language="Javascript"> parent.frames['your_frame_name_here'].location.refresh(); </script>