php - HTML Forms to query multiple pages -


i trying build meta search engine.

i have following code.

<form method="post" action="google_basic.php">  <label for="service_op">service operation</label><br/>  <input name="service_op" type="radio" value="web" checked />  web <input name="service_op" type="radio" value="image" />  image <br/> <label for="query">query</label><br/>  <input name="query" type="text" size="60" maxlength="60"   value="" /><br /><br /> <input name="bt_search" type="submit"   value="search" /> </form> <h2>results</h1>    {results}  

i need form have more 1 action= ""(i realise form can have 1 action, need equivalent of 3 actions ="" ). form needs access 3 search engines , display results. best way this?? know javascript may option not solution me may switched off in clients browser.

any ideas on best way go this??

tia

you need perform 3 "actions" on server (in or google_basic.php file). after posting server, can perform arbitrary number of "actions" there.

see also: http://us2.php.net/manual/en/intro.curl.php


Comments

Popular posts from this blog

php - Calling a template part from a post -

Firefox SVG shape not printing when it has stroke -

How to mention the localhost in android -