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.
Comments
Post a Comment