This is a discussion on Popping a small window within the PHP Language forums, part of the PHP Programming Forums category; Is it possible to use PHP to pop a small window to display some quick information. For example if someone ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Is it possible to use PHP to pop a small window to display some quick
information. For example if someone adds an item to a shopping cart, a small window should pop up, saying the item has been added to the shopping cart. How does one do this in PHP? Thank you John |
|
|||
|
"John" <johnmark@fastermail.com> wrote in message
news:1ab390bb.0311041325.5ef05467@posting.google.c om... > Is it possible to use PHP to pop a small window to display some quick > information. For example if someone adds an item to a shopping cart, a > small window should pop up, saying the item has been added to the > shopping cart. How does one do this in PHP? > > Thank you > John Since PHP is server-side, you would either have to... A. Popup the window before running the PHP and make the URL of the popup window the PHP script. or B. Run a PHP script which returned the necessary javascript to popup a window. |