I want to post parameters to a URL using the POST method but I cannot use a form. Even if I do use a form, it would have to be auto-posted with out user interaction. Is this possible? How can I do this?
|
|
You could use JavaScript and XMLHTTPRequest (AJAX) to perform a POST without using a form. Check this link out. Keep in mind that you will need JavaScript enabled in your browser though. |
|||
|
|
|
Using jQuery.post
|
|||
|
|
|
How to do it without using cURL with straight-up PHP: http://netevil.org/blog/2006/nov/http-post-from-php-without-curl |
|||
|
|
|
cURL is an option, using Ajax as well eventhough solving back-end problems with the front-end isn't so neat. A very useful post about doing it without cURL is this one: http://netevil.org/blog/2006/nov/http-post-from-php-without-curl The code to do this (untested, unimproved, from the blog post):
|
|||
|
|
|
it can be done with CURL or AJAX. The response is equally cryptic as the answer. |
|||
|
|
|
If you're trying to link to something, rather than do it from code you can redirect your request through: http://getaspost.appspot.com/ |
|||
|
|