I made a table called article, in which has fields title and content, content is a text field.
The purpose is to copy and paste some interesting news piece from the internet and store it in the database.
It was OK when I have a fairly small article to paste in content (the insert takes 3 seconds), however, if I try to paste a longer article. Then wait for the insert statement to finish, it takes forever (like 4 minutes). The same thing happened with update.
I suspect the problem is the size of input sending to mysql server. Is there a setting I can tweak to make it takes input bigger buffer size or something? I don't know if that is a problem with PHP or mysql?
After I hit insert button to post the content, the browser said sending request to server, then wait for a long long time, then finally browser says "waiting for server", then the operation is done.
Thanks a lot.