
March 7th, 2013, 06:58 AM
|
|
|
|
A popup is not done with PHP per se since it is server side. There are a couple of way to do popups. One is with Javascript and window.open. The other is an HTML <a> tag (which could have an href to a PHP script) using the 'target=_blank' attribute. The latter requires a mouse click while the former can be done with any type of Javascript trigger. As for what menus are displayed, that is controlled by the browser. You may be able to suppress them with Javascript's window.open settings parameters but most browsers ignore that anyway unless permitted by the user settings. It is very difficult to override browser settings with Javascript and even harder with PHP/HTML. It is mostly a matter of security.
__________________
There are 10 kinds of people in the world. Those that understand binary and those that don't.
Last edited by gw1500se : March 7th, 2013 at 07:06 AM.
|