"/> ">
Home > Article > Backend Development > Pass parameters to the pop-up page instance in the php page
1. In php pages, it is often used to pass parameters to the pop-up page and operate in the pop-up page
2. Two methods, the screenshot is one
3. The most common one is to use hiden to hide the field. When the button is clicked, the parameter value to be passed is passed to the hidden field and obtained in the pop-up window when needed.
<input type="hidden" name="win_hidden" class="win_id" value="" />
The above is the detailed content of Pass parameters to the pop-up page instance in the php page. For more information, please follow other related articles on the PHP Chinese website!