Hello !
I would like to open from my php code a popup windows to show some important information. I would like to do that with PHP. Is that possible ?
Thank for your help,
Jean-Marie
Openning a new windows
Moderator: General Moderators
Moved to client side:
no it's not possible with php, you can send info down to the client which will open a new window with JS, but the server can not open a new window for you.
no it's not possible with php, you can send info down to the client which will open a new window with JS, but the server can not open a new window for you.
Code: Select all
<script>
var newWin = window.open('pagename.php','page','width=400,height=400');
newWin.focus();
</script>-
schneiderj
- Forum Newbie
- Posts: 11
- Joined: Tue Mar 15, 2005 4:36 am