If I put a big iframe on the same page with all the content in the big iframe then can I put the search result onto the big iframe?
any code for it?
If I put a big iframe on the same page with all the content in the big iframe then can I put the search result onto the big iframe?
any code for it?
If i understand you right you want a iframe with the search results from an other page
<form target='theFrame' method='GET' action='http://www.google.nl/search'>
<input type='text' name='q'/>
<input type='submit' value='Google it'/>
</form>
<iframe name='theFrame'></iframe>
this example is done with google search.