Re: [PHP] IFRAMES PHP

2003-01-27 Thread Chris Shiflett
--- Greg [EMAIL PROTECTED] wrote: Hi, I have a form with an IFRAME nested in it. When the form is submitted, I can't get the values of the checkboxes in the IFRAME, is there any way to do this? Well, I think (I could be wrong) you're looking at this wrong. Forms submit to resources

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Greg
Here's the basic layout of my html page, this isn't the real html, just the basic idea. html form action=test.php method=post input type=text name=test1 iframe src = iframetest.php/iframe input type=button label=Submit /form /html Now inside iframetest.php I have a few check boxes that I want

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Sean Burlington
Greg wrote: Here's the basic layout of my html page, this isn't the real html, just the basic idea. html form action=test.php method=post input type=text name=test1 iframe src = iframetest.php/iframe input type=button label=Submit /form /html Now inside iframetest.php I have a few check boxes

RE: [PHP] IFRAMES PHP

2003-01-27 Thread John W. Holmes
Here's the basic layout of my html page, this isn't the real html, just the basic idea. html form action=test.php method=post input type=text name=test1 iframe src = iframetest.php/iframe input type=button label=Submit /form /html Now inside iframetest.php I have a few check

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Greg
Unfortunatly, that gets rid of the reason I have the iframe in there to begin with. I need a scrollable iframe with a set of buttons that perform certain actions at the top, that have to always be at the top. -Greg Sean Burlington [EMAIL PROTECTED] wrote in message [EMAIL

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Chris Boget
It's probably an HTML thing. I don't know how iframes are interpreted, but it's probably not really a part of your form, even though it looks like it is when you view it. The contents of an IFRAME, by definition, is a totally different document. It behaves for all intents and purposes as a

RE: [PHP] IFRAMES PHP

2003-01-27 Thread John W. Holmes
Unfortunatly, that gets rid of the reason I have the iframe in there to begin with. I need a scrollable iframe with a set of buttons that perform certain actions at the top, that have to always be at the top. -Greg Then put the entire form into the iframe. ---John W. Holmes... PHP

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Greg
But the buttons are outside of the iframe, so that no matter how large the frame gets, the buttons are always in the same place :/ -Greg John W. Holmes [EMAIL PROTECTED] wrote in message 000501c2c629$f98c8590$7c02a8c0@coconut">news:000501c2c629$f98c8590$7c02a8c0@coconut... Unfortunatly, that

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Sean Burlington
Greg wrote: Unfortunatly, that gets rid of the reason I have the iframe in there to begin with. I need a scrollable iframe with a set of buttons that perform certain actions at the top, that have to always be at the top. -Greg in that case you either need to try getting some javascript to

RE: [PHP] IFRAMES PHP

2003-01-27 Thread Jon Haworth
Hi Greg, But the buttons are outside of the iframe, so that no matter how large the frame gets, the buttons are always in the same place :/ So stick an image of the button outside the iframe, wrap it in an a, and use the onclick handler to call a javascript function that submits the form. Of

Re: [PHP] IFRAMES PHP

2003-01-27 Thread adrian [EMAIL PROTECTED]
() /form /body /html iframetest.htm html body form input type=checkbox id=one name=one value=hello /form /body /html - Original Message - From: John W. Holmes [EMAIL PROTECTED] To: 'Greg' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 27, 2003 5:31 PM Subject: RE: [PHP

Re: [PHP] IFRAMES PHP

2003-01-27 Thread Greg
m /body /html iframetest.htm html body form input type=checkbox id=one name=one value=hello /form /body /html - Original Message - From: John W. Holmes [EMAIL PROTECTED] To: 'Greg' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, January 27, 2003 5:31 PM Subject: