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. :-\ 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 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. 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
Archived
This topic is now archived and is closed to further replies.