Pop up windows in PHP

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
sa177ir
Forum Newbie
Posts: 4
Joined: Sat Nov 11, 2006 5:00 pm

Pop up windows in PHP

Post by sa177ir »

Is there any way to create a pop up window in PHP?

Any suggestions would be greatly appreciated.

Thanks!
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

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...
Post Reply