Pushpendra
Pushpendra

Reputation: 4382

Read BLOB from MySql to binary file in PHP?

I want to read the WAV file stored as BLOB in the MySql using PHP. But I don't have any idea about it.

Please help me.....

Thanks in advance.....

Upvotes: 0

Views: 1640

Answers (1)

SergeS
SergeS

Reputation: 11779

First a simpliest query to select the data , put it into variable and use file_put_contents( ... ) or if you want to send it as downloadable file just use echo and make sure there no junk output and correct header

Upvotes: 1

Related Questions