"Andre" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Yes and don't work.
>
> The code of the frameset
> <html>
> <head>
> <title>Untitled 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>
> <noframes><body>
>
> </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

Reply via email to