javascript - Creating popup window with form content and then show output in parent page and send to database -
i have table , in of it's column want user when click on button inside column pop window appear have checkboxes , after user checked checkbox appear output in same column have button post these values of selected checkboxes , user name database (php). i'm beginner , wish me. help.html code : <html> <head> <script language="javascript"> mypopup = ''; function openpopup(url) { mypopup = window.open(url,'popupwindow','width=640,height=480'); if (!mypopup.opener) mypopup.opener = self; } </script> </script> </head> <body> <table border="1"> <tr> <th> user name </th> <th>product selected</th> </tr> <tr> <td> <input type="text"/></td> <td> <button onclick="openpopup('f.html')">select</button></td> </body> </html> and f.html code: <html> <head...