So I have a form on PHP/HTML
page. User submitss it to that same PHP/HTML
page. So now PHP page I will have $_POST
data. I want to when page is refreshed opnt some popUp browser windows which url's will be relative to users POST
request. like www.example.com/bal-bla-bla.php? id=$_POST['StreamId']
相关问题
- Views base64 encoded blob in HTML with PHP
- Is there a limit to how many levels you can nest i
- Laravel Option Select - Default Issue
- How to toggle on Order in ReactJS
- PHP Recursively File Folder Scan Sorted by Modific
edited:
you can always display a message before open the window that advice the user to accept this new window!
Include some
<script>
elements withwindow.open
calls in them in the response … then watch as every popup blocker in the world blocks them.You would need to do this client side in javascript.
You could use window.open() in a document.onload event handler.
However, chances are if the user has a pop-up blocker this will be blocked.