Posted by Etienne Marais on 11/16/05 12:59
Stefan Rybacki wrote:
> Stefan Mueller wrote:
>>>PHP has no concept of HTML frames.
>>>
>>>You'll have to add a target="..." attribute to your <FORM> element.
>>
>>
>> Great, this works perfect and is good enough for my requirements. But
>> does that mean that a PHP script can only write data to one frame? Is
>> there really no possibility to refresh a second frame with a PHP script?
<?php
/* mainframe.inc */
// some code
if (condition_is_met_to_refresh_other_frame) {
?>
<script>
this.parent.other_frame.reload();
</script>
<?
}
// more code
?>
Navigation:
[Reply to this message]
|