Is there any way to create a pop up window in PHP?
Any suggestions would be greatly appreciated.
Thanks!
Pop up windows in PHP
Moderator: General Moderators
No.
PHP is usually used to generate text (more specficially html, javascript, css, ...). The output of this process is then send to a http user-agent which interprets/renders it to the user. So if you generate text (javascript that does a windows.open) you might get the desired result... But notice that it's not php that opens the window...
PHP is usually used to generate text (more specficially html, javascript, css, ...). The output of this process is then send to a http user-agent which interprets/renders it to the user. So if you generate text (javascript that does a windows.open) you might get the desired result... But notice that it's not php that opens the window...