here is the 2 files i am running..
iframe.php
PHP Code:
<form action="" method="get">
<input name="name" type="text" value="neil">
<input name="" type="submit">
</form>
<? echo $name; ?>
main.php
PHP Code:
<body onLoad="document.iframe1.submit()">
<P ALIGN=center><IFRAME name="iframe1" SRC="iframe.php" WIDTH=300 HEIGHT=100></IFRAME></P>
What i am trying to do is get the main.php to activate the submit button on the inline frame (iframe.php) if i give the form a name it works, but with out the name set it wont.
Bookmarks