i have a textbox and a button that opens a child window:
<form name="modify" method="post" >
<input type="text" name="Title" value=<? echo $title; ?>>
<input type="button" value="Choose.." onClick = "window.open('modtitle.php?OpenForm&actione=load','new_win','width=400,height=300');">
</form>
upon clicking the button, it should pass the value of the textbox ($title) into a textarea inside the child window. how can i pass $title in the child window? Should i pass the value in the button?if yes, how? note that i cannot use link instead of button.
my child window goes like:
<form name="form1" method="post" >
<textarea name="Title" cols="50" rows="5" style="font-family: Verdana, Arial, Helvetica, sans-serif"><? echo $title; ?></textarea>
</form>
please help. thanks!