Wh1T3h4Ck5
Wh1T3h4Ck5

Reputation: 8509

Is there any way for uploading files to 2 or more servers at same time using PHP & forms?

I'm just wondering is that even possible using forms and PHP? Thanks.

Upvotes: 0

Views: 57

Answers (2)

Kaivosukeltaja
Kaivosukeltaja

Reputation: 15735

Forms can't be submitted to more locations than one, but is you absolutely need to do that, you could create an AJAX uploader to handle it.

Upvotes: 1

ThiefMaster
ThiefMaster

Reputation: 318508

No. A single form can only be submitted to one location. However, the PHP script could then upload it to another location.

Upvotes: 1

Related Questions