I writing a function in my form that require user to upload a file, but doesn't necessary have to save it filename in to my database as the program can automatic detect the file.
I try to use this piece of code:
$this->setWidget('filename', new sfWidgetFormInputFile());
But this required to have a column in database for saving file.
Is there anyway to not use database but include a upload form in symfony 1.4?