I have a 'Search' button in a form which pops up a search screen. The user does their search and then selects the result with a radio button.
I have the value in the $_POST array but cannot figure out how to get it back to the text box in the form. This may be an html/javascript question but any suggestions would be greatly appreciated.
I guess I need to:
1) close the pop-up window
2) put value into text box in form:
<tr><td>Name </td>
<td><input type="text" name="Name"></td>
<td><img src="search.gif" alt=""onClick="javascript:popUp('search2.html')"></td>
</tr>
<tr>
TIA