The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.27 (Linux)
|
Upload File Help - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: Upload File Help (/showthread.php?tid=777) |
Upload File Help - DanAtHawkeye - Jul 13th, 2010 Hi, New user/coder. Created an online app form. Want to offer upload of resume file for applicants. I know Form Tools can upload built-in. Can anyone help with a very simple html code to add this function to my form??? Scoured the Documentation and couldn't find anything helpful. Thanks in advance, D RE: Upload File Help - Ben - Jul 13th, 2010 Heya, Sure, no worries! To add a file upload field to your form you just add two things to the markup: an enctype attribute to the form tag, and the file field itself. So, something like: Code: <form ... enctype="multipart/form-data"> Then, when adding the form through the Form Tools UI, make sure you check the "form includes a file upload field" on the second page. Good luck! - Ben |