TomBullock Posted March 31, 2009 Share Posted March 31, 2009 Hello Ive created a little code thats logs you into the site an external page. Is there a way I can make it submit to more than one php login form? So for example, I could login to 2 forums with 1 form? My code so far is here: http://sackthis.co.uk/test/autoproxy.php Would appreciate any help Thanks Thomas Quote Link to comment https://forums.phpfreaks.com/topic/151987-multiple-submit/ Share on other sites More sharing options...
.josh Posted March 31, 2009 Share Posted March 31, 2009 you can't have more than one target in your form action but there are lots of ways you can submit to two places. You can do it clientside with some javascript. Use an onclick or onsubmit to call a function that opens up a new window and submits a duplicate form (with info) to a different url. In your target page from your form action (the "processing script") you can have php submit the info to the other site, using curl. To name a couple. Quote Link to comment https://forums.phpfreaks.com/topic/151987-multiple-submit/#findComment-798183 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.