forms

A

Anonymous

Guest
Hi all :)

Does anyone know how I could submit 6 forms all going to different sites with only one submit button?

Thanks for your time guys :)
 
Paul knapp said:
Hi all :)

Does anyone know how I could submit 6 forms all going to different sites with only one submit button?

Thanks for your time guys :)

http://www.php.net/manual/en/function.fsockopen.php
 
Yet again the info you supplied me is totally useless...
Thanks for you help....'NOT'
 
hmm you really get assholes everyware.. even though you try to help them.. they are still assholes :x
 
yeah indeed, quite rude....but if ya wanna submit 6 forms, you will have to use js that's for sure...just make 2 frames, one with all the forms...if you click the submit button just parse the data of every form one by one to the 2nd frame...that's one solution at least....there are more of them, for instance what Pejone was pointing out, just post yur data to one php and it'll make connections to the right addresses and posts the data
(so he's remark, although short, wasn't bullshit :))
 
Hey, Paul Knapp, just so you know, PejOne gave you exactly the reference you needed. You have to dig a little deeper into the link he gave you, but if you do, you'll find that the fsockOpen function is actually an excellent way to do what you asked. As a matter of fact, I would reccomend this approach over any other, as it avoids the use of irksome client side scripting.

Please take a look before telling someone the excellent advice they offered is worthless.....
 
his reaction is quite understandable really, after all he has already coded a system wherein he's trying to post 6 forms from one page to all different pages, so he's probably not using the best approach in the first place.

I'd suggest trying to sort out the architecture of your current backend first before delving socket programming. There are very very few instances where you'd actually want to seperate form data and I'm not even going to mention security issues.
 
Back
Top