I'm creating a flash form for a membership application.
I currently have the form set up to simply accept the information, email it and upload the file to the server with
if(move_uploaded_file($_FILES['Filedata']['tmp_name'], $target_path))
My question is this...
instead of uploading the file to my server I'd like the file to be added to a database.
I haven't been able to figure out how to add an actual file to my database.