|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Can I do a pop up window in PHP? I'm afraid of browsers that are not javascript enabled that won't have means to launch my pop up window.
Any ideas? |
|
#2
|
|||
|
|||
|
No. PHP is a server side scripting language and cannot be used for client side functions like JS can. The only way to do what you request is to have a link with a target outside the current browser that the user would have to manually click.
|
|
#3
|
|||
|
|||
|
you could do something like this but you'd have no control over the window size etc.
<SCRIPT> //current code to generate window using javascript </SCRIPT> <NOSCRIPT> <A href="newwwindow.html" target="_blank">No javascript!click here to see what you've missing.</a> </NOSCRIPT> |
![]() |
| Viewing: Dev Shed Forums > Web Design > JavaScript Development > Non-javascript pop up windows? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|