[PHP-DB] Re: passing variables through frames

2003-02-01 Thread Edwin Boersma
It's better to use input type=hidden name=... value..., because my experience is that it does not work with passing them in the action-option of form. This is the case if u have other input boxes, at least I think it is. If u don't have other input fields, just use a href=url.php?var1=

[PHP-DB] Re: passing variables through frames

2003-01-31 Thread Stefan Panayotov
And how does it work? -- Matt [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Nevermind everyone... I found out. Thanks Matt [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Does anyone know how to pass a variable to a

[PHP-DB] Re: passing variables through frames

2003-01-31 Thread Matt
It basically just looked something like this: form method='POST' action='url.php?var1=$var1var2=$var2' You just post the variables you want to pass throught the url string. It is pretty simple. Stefan Panayotov [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... And

[PHP-DB] Re: passing variables through frames

2003-01-30 Thread Matt
Nevermind everyone... I found out. Thanks Matt [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Does anyone know how to pass a variable to a different frame? For example, I have a navigation frame, and when you click a link, it opens inside a different frame.