Hi I'm new to php. In my web-form I want to present some values for my users in a new window, a popup, so they can choose a value. The value they choose shall be inserted in the "opener" field. Does php support methods to handle these thing or must I use java script?
Hi. If you would like to do that without the opener page reload then you need to use JavaScript. Rough example of the code for your selection window: <a href="javascript:void(0)" onClick="window.opener.document.someForm.someField.value='One of the values'">One of the values</a> Code (markup): If you have additional questions please post them.