Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Textarea Maximum Characters in Posting

Status
Not open for further replies.

alsaffar

Programmer
Oct 25, 2001
165
KW
Hi there,

What is the maximum number of characters we can post in a form for in a textarea?

And what is the maximum number of characters we can store in varchar field in mysql database?

Thanx in advance ;)
 
What is the maximum number of characters we can post in a form for in a textarea?
That depends. How are you submitting the data? A POST-method submission can send more information than a GET-method.

And what is the maximum number of characters we can store in varchar field in mysql database?
It depends on the version of your MySQL installation. See

Want the best answers? Ask the best questions!

TANSTAAFL!!
 
What is the maximum number of characters we can post in a form for in a textarea?
Following on from the comments already, it's dependant on the browser as well. This was more visible on the older (v4) browsers. Modern (IE5+, FF etc) browsers seem to be able to handle quite a lot of data in a textarea (using POST) in a form.

Set up a quick php page to test large data submits using the various browsers you want to support -- and see if they fail when you throw very large amounts of data at them. That's probably the best way to find out for your setup.

Cheers,
Jeff

[tt]Jeff's Page [/tt][tt]@[/tt][tt] Code Couch
[/tt]
 
mySQL version is 3.23.58

So, what is the maximum number of characters I can store in VARCHAR field?

Method of submitting is POST

So, in the wrost case, what is the maximum number of charaters I can POST?

Thank you all for your help ;)
 
So, what is the maximum number of characters I can store in VARCHAR field?
Again,
So, in the wrost case, what is the maximum number of charaters I can POST?
As BabyJeffy has pointed out, this depends on your browser. To add to his post, this can also be limited by web server vendor, web server configuration, and web server OS.



Want the best answers? Ask the best questions!

TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top