How to pass values from one iframe to another
I have two iframes on single page and both with different files in src. I want to pass the values from one iframe to another iframe.
i.e.
<?
include("common.php");
include("header.php");
?>
<iframe id="frame1" src="temp2.php"></iframe>
<?
include("center.php");
?>
<iframe id="frame2" name='frame2' src="temp3.php"></iframe>
<?include("footer.php");
now i want to show the searched values from frame1 into frame2.
pls help me.
thanx
Raaj
|