RE: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

2004-08-27 Thread Andre
But don't work that's is my problem,
And I think this don't work because the pop-up window is a frame
Help?? 

-Original Message-
From: Torsten Roehr [mailto:[EMAIL PROTECTED] 
Sent: quinta-feira, 26 de Agosto de 2004 23:18
To: [EMAIL PROTECTED]
Subject: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

Andre [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]


 Hello

 Someone now how to paste values for one pop-up. And this pop-up is one
frame
 I am doing like this to open pop-up

 echoa href=\#\ class=\textblack\

onclick=\NewWindow('fact_imprime.php?factura_id=$factura_id','Ficha','700',
 '300','no','left');return false\ onfocus=\this.blur()\
 img src=\images/imprime.gif\ width=\31\
 height=\31\ border =\0\/a;

 And in the pop-up I do like this.
 echo$_REQUEST[factura_id];

 Thanks for the help...

What you described should work, so *where* is your problem?

Regards, Torsten Roehr

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

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



Re: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

2004-08-27 Thread Torsten Roehr
Andre [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 But don't work that's is my problem,
 And I think this don't work because the pop-up window is a frame
 Help??

Have you seen my other post from two minutes ago?

You mean your popup contains a frameset? Then post your frameset code and we
might be able to help.

Regards, Torsten

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



RE: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

2004-08-27 Thread Andre

Yes and don't work.

The code of the frameset
html
head
titleUntitled Document/title
meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
/head

frameset rows=*,80 frameborder=NO border=0 framespacing=0
  frame src=imprimir_factura.php name=mainFrame
  frame src=bot.php name=bottomFrame scrolling=NO noresize
/frameset
noframesbody

/body/noframes
/html

And I want to see de value of $_REQUEST in imprimir_factura.php
-Original Message-
From: Torsten Roehr [mailto:[EMAIL PROTECTED] 
Sent: sexta-feira, 27 de Agosto de 2004 10:31
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: paste values for one pop-up. And this pop-up is one
frame

Andre [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 But don't work that's is my problem,
 And I think this don't work because the pop-up window is a frame
 Help??

Have you seen my other post from two minutes ago?

You mean your popup contains a frameset? Then post your frameset code and we
might be able to help.

Regards, Torsten

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

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



Re: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

2004-08-27 Thread Torsten Roehr
Andre [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]

 Yes and don't work.

 The code of the frameset
 html
 head
 titleUntitled Document/title
 meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
 /head

 frameset rows=*,80 frameborder=NO border=0 framespacing=0
   frame src=imprimir_factura.php name=mainFrame
   frame src=bot.php name=bottomFrame scrolling=NO noresize
 /frameset
 noframesbody

 /body/noframes
 /html

You have to pass the variable from the frameset to the page that will be
using the variable. Change the first frame line into:

frame src=imprimir_factura.php?factura_id?php= $_GET['factura_id']; ?
name=mainFrame

Then in imprimir_factura.php you can acces the variable via
$_GET['factura_id']. This should work.

Regards, Torsten Roehr

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



RE: [PHP] Re: paste values for one pop-up. And this pop-up is one frame

2004-08-27 Thread Andre
Thank work.
 
Regards, André Caridade
-Original Message-
From: Torsten Roehr [mailto:[EMAIL PROTECTED] 
Sent: sexta-feira, 27 de Agosto de 2004 13:42
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Re: paste values for one pop-up. And this pop-up is one
frame

Andre [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]

 Yes and don't work.

 The code of the frameset
 html
 head
 titleUntitled Document/title
 meta http-equiv=Content-Type content=text/html; charset=iso-8859-1
 /head

 frameset rows=*,80 frameborder=NO border=0 framespacing=0
   frame src=imprimir_factura.php name=mainFrame
   frame src=bot.php name=bottomFrame scrolling=NO noresize
 /frameset
 noframesbody

 /body/noframes
 /html

You have to pass the variable from the frameset to the page that will be
using the variable. Change the first frame line into:

frame src=imprimir_factura.php?factura_id?php= $_GET['factura_id']; ?
name=mainFrame

Then in imprimir_factura.php you can acces the variable via
$_GET['factura_id']. This should work.

Regards, Torsten Roehr

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

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