Heres what I'm trying to do.
THIS PIECE
<html>
<iframe src="small.html " frameborder="0" width="800" height="290">
</iframe>
</html>
OPENS Bigger.html Page 1 and has a text box for user input.
Input your message:
<input type="text" name="Part Number" value="11111" size="20">
THEN after user has typed something they hit a button
<input type="text" value="Submit" />
WHICH calls some.html
<form action="some.ht ml" method="get">
SOME.HTML is generic and pops up.
How do I get the text that was entered in by the user from the Bigger.html
This is the NewGuy so any code would be great.
Thanks.
THIS PIECE
<html>
<iframe src="small.html " frameborder="0" width="800" height="290">
</iframe>
</html>
OPENS Bigger.html Page 1 and has a text box for user input.
Input your message:
<input type="text" name="Part Number" value="11111" size="20">
THEN after user has typed something they hit a button
<input type="text" value="Submit" />
WHICH calls some.html
<form action="some.ht ml" method="get">
SOME.HTML is generic and pops up.
How do I get the text that was entered in by the user from the Bigger.html
This is the NewGuy so any code would be great.
Thanks.
Comment