Does anyone know how I can fill in and submit a form which is hosted on a separate server. Say for example, I wanted to fill the form out on http://tools.950buy.com/rss-submit/ but I wanted to do this from a PHP script on my site. Would this be possible? Thanks. 🙂
Share
To do it from PHP script you should simulate a HTTP POST request. You can do that by using Client URL library or
file_put_contents()function with properly set up$contextparameter: