Jump to content

How Upload 2 picture file with 2 textfield???

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
joola

joola

    Newbie

  • Members
  • Pip
  • 1 posts
Hi,

I have a little bit problems here. Perhaps anyone can help me out. Straight to the problem:

I can upload 1 picture file with on textfield on the webpage in one form. But how I can upload 2 picture file with 2 textfield with browse button in each textfield in one form. I will give my sourcecode to view, if theres someone will help me out.Thanks.

Best regards...

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests
Move to correct forum.

Use an array in your HTML to upload multiple files and loop through them it in PHP. For Example:

<input name="uploadedfile[]" type="file" />
<input name="uploadedfile[]" type="file" />

Post your HTML and PHP code and we can help you further.