> 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 test.php to > be able to access. Is there any way to do this?
If you set a hidden form element in iframetest.php, does it show up when you do a print_r($_POST) in test.php ? 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. ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php