I have this script that extracts some data from mysql and then uses echo to output it. But, as the page grew and got more time, I got this weird behavior when it ends at 65535 chrs (when using strlen to check)
All data is stored in MySQL, beyond 65535 chrs, showing when using the echo.
EDIT: Sorry, it looks like NOT all data was saved, it was my WYSIWYG editor that made it look like everything, but everything was saved. (It automatically closes closed tags, making it look normal when I open the contents again.)
Why is this happening?
All I do is:
$content= $row['content']; echo $content;
source share