in reply to Re: how to post multiple select list through LWP::agent
in thread how to post multiple select list through LWP::agent
if I want to simulate http query using lwp method as follows... <form name="geneCompareTwo" method="post" action="geneCompareTwo2.php" +> ... <select name="ontologies[]" multiple="yes" size="4"> <option selected value="All">All</option> <option value="biological_process">Biological Process</option> <option value="cellular_component">Cellular Component</option> <option value="molecular_function">Molecular Function</option> </select>
it still doesn't workmy $response=$browser->post($url,["ontologies[]" => "ALL"])
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: how to post multiple select list through LWP::agent
by ikegami (Patriarch) on Sep 10, 2008 at 04:51 UTC | |
by NPhard (Initiate) on Sep 10, 2008 at 16:04 UTC |