I am reading a large text value from MySQL and want to echo it in PHP.
The whole value is not being displayed.
I have manually exported and reviewed the cell in MySQL, and I can assure that the variable is fully stored in MySQL.
That means there is at least 1 of 2 problems.
The text is about 1MB long
1) PHP unable to echo more than X bytes.
2) PHP unable to read MySQL column and row over X bytes.
How should I approach solving this?