Re: [PHP] pop-up windows with a include

2004-03-03 Thread apur kurub ver.1
this case using javascript
with the function window.open()

e.g
the file index.php will popup teste.php while the index.php load

inde.php
..
body onload=window.open('teste.php')
.

rgds
http://amadarum.e-tics.net/blogger

- Original Message - 
From: Andre  [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, March 03, 2004 6:22 AM
Subject: [PHP] pop-up windows with a include




Hello
I need to open one pop-up windows with a include
For example...

?PHP

include(teste.php);

?
I need de window teste.php show in po-up .
Obrigado
André Caridade

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] pop-up windows with a include

2004-03-02 Thread Chris W. Parker
Andre mailto:[EMAIL PROTECTED]
on Tuesday, March 02, 2004 3:23 PM said:

 Hello

hi.

 I need to open one pop-up windows with a include
 For example...
 
 ?PHP
 
   include(teste.php);
 
 ? 
 I need de window teste.php show in po-up .

php is a server side technology. what you are looking to do needs to be
handled on the client side. what you need to do is figure out how to
open a window with javascript and then have php send that code to the
client.

read this page: http://www.pageresource.com/jscript/jwinopen.htm


hth,
chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php