paulgc34 Posted July 4, 2006 Share Posted July 4, 2006 I'm want a form with text input with multiple image uploads with the results sent to my email. Can anyone point me to a source for this. Thanks. :-\ Quote Link to comment https://forums.phpfreaks.com/topic/13643-php-form-with-text-input-and-multiple-image-uploads-sent-to-email/ Share on other sites More sharing options...
michaellunsford Posted July 4, 2006 Share Posted July 4, 2006 you can add multiple <input type="file"> to your source HTML, then on the PHP side, just loop the $_FILES array.[code]do { do_something_with(current($_FILES));}while(next($_FILES));[/code]Email might be a little tougher. Check out this tutorial:http://www.phpfreaks.com/quickcode/Mail-with-attachments/260.php Quote Link to comment https://forums.phpfreaks.com/topic/13643-php-form-with-text-input-and-multiple-image-uploads-sent-to-email/#findComment-52933 Share on other sites More sharing options...
paulgc34 Posted July 4, 2006 Author Share Posted July 4, 2006 thank you. I'll check it out. Quote Link to comment https://forums.phpfreaks.com/topic/13643-php-form-with-text-input-and-multiple-image-uploads-sent-to-email/#findComment-52934 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.