hello can you help me ? i have 2 page , variable for search in page 1 , it great but i wont the result to iframe in page2 search result like this http://www.google.com/search?q=% 22webtosearch%22%20wanttoseanch ========page1 =========== html <form action="traite.php" target="_blank" method="get" name="f" id=""> <table cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="25%"> </td> <td align="center" nowrap="nowrap"> <input maxlength="2048" name="q" size="55" title="le titre" value="" <select name="m"><option value='http://www.google.com/search'>Google</option><option value='http://search.yahoo.com/search'>Yahoo</option> <select name="s"><option value="webtosearch1">webtosearch1</option><option value="webtosearch2">webtosearch2</option> <input name="btnG" value="Recherche" type="submit"> =======page2 whit iframe======= <title>page2</title> <frameset border="0" rows="76px,*"> <frame src=".i do not what put ." /> <frame src="http://www.google.com/search?q=%22webtosearch%22%20wanttoseanch " /> <noframes> </noframes> </frameset>
If you want the results on a second page, your form will want to point to the second page as its action. On the second page, take the $_GET results and build your search string and feed it to the iframe src. I think that's what you're asking.