I have a custom search box on a wordpress blog

Jun 21, 2010
921
24
0
The box calls a script. I know the form action (url), method (post), and name.

Is there a way to send to this by accessing a certain url? tried &post=.. and a couple other permutations.
keKZ9.jpg
 


If its a POST request the parameters are not sent in the url.
 
Dangit. I want to send a list. TY gutter.
Guess I'll throw yet another wimpy script at it.
 
if you're scripting something to use the url, the language you're using should have an HTTP API that you can form a POST request with...if that's what you're trying to accomplish...

or are you trying to achieve something else by hitting this specific URL?
 
if you're scripting something to use the url, the language you're using should have an HTTP API that you can form a POST request with...if that's what you're trying to accomplish...

or are you trying to achieve something else by hitting this specific URL?
Like ruby on rails?