I'm having a difficult time resolving a file-upload problem. I have a dynamic form working perfectly with the exception of my Fileupload field. When "enabled uploads" is set to No, I am able to save the filename to the database.
When I have "enabled uploads" set to Yes, files are renamed emailed and uploaded BUT the filename is not saved to the database.
This is what I'm using to dynamically load form fields...
When I have "enabled uploads" set to Yes, files are renamed emailed and uploaded BUT the filename is not saved to the database.
This is what I'm using to dynamically load form fields...
<?php ... //file upload section echo "<div class='form_item'> <div class='form_element cf_fileupload'> <input class='cf_fileinput cf_inputbox' title='' size='10' id='$file' name='$file' type='file' />"; ?>Any suggestions?