Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to store an audio file uploaded by user in my mysql database and retrieve the same from that mysql table

I have tried to googled about the same but wasnt able to get any good tutorial explaining this

share|improve this question
you can upload audio file , using just file uploading function of php use this maheshchari.com/simple-php-file-upload-tutorial – zan Jan 12 at 19:32
The actual file will not be stored in the MySQL database, but you can store a path. As Zan mentioned, upload the file via PHP and then write the path with MySQL to a table. – Yrcrz Jan 12 at 19:33
@Yrcrz sir can we store audio in BLOB in mysql? – N_j Jan 12 at 19:41
@zan sir can we store audio in BLOB in mysql? – N_j Jan 12 at 19:51

closed as not constructive by FreshPrinceOfSO, Glavić, hjpotter92, Jocelyn, Ed Heal Jan 13 at 1:29

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

As N_j pointed it out, you can upload files directly to your database using BLOB data type, you can see an example of how to do that in this link: Uploading files to MySQL database

share|improve this answer
but sir then is retrieving audio is same as that for image? – N_j Jan 12 at 20:00
Yes, you get the file, in the example you can see how to retrieve the file. – Ricardo Ortega Magaña Jan 12 at 23:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.