I’m developing an e-project website in php and mysql. I have a problem in saving a video as longblob. It has a minimum size of 2MB. So, every time when an Admin has to update his web pages, he has to compress his videos. And that wouldn’t be nice.
Is it possible to save a video as path? I’ve done something similar to that in C#.NET, but I haven’t tried in php.
I’m developing an e-project website in php and mysql. I have a problem in
Share
Why? It’s perfectly possible to update a row in the database without changing a BLOB that’s already in there.
Certainly. Blob vs File is a trade-off that you’ll have to decide depending on your app’s needs. See eg this question for background.