[PHP] Re: PHP Forms and String Limitations

2001-12-10 Thread Jørg Vidar Bryne

Jeremy Reed [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 This is the problem: The user tries to submit a news article of 2+ pages
 (approx 4400 characters) but the article gets truncated to about 4050
 characters.  Is there some sort of limitation on PHP variables that is
 causing this?

Are you using form method=getor form method=post ?

I'm not certain about the details but GET is not useful for handeling large
data, while POST has a default setting of max 2MB pr. request.

-Jørg





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Re: PHP Forms and String Limitations

2001-12-10 Thread Jeremy Reed

I'm using the POST method.

We may be on the right track though, there may have been a problem with the
insertion of the data, rather than the retrieval.  However, I still don't
know what could be causing the problem.


JøRg Vidar Bryne [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Jeremy Reed [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  This is the problem: The user tries to submit a news article of 2+ pages
  (approx 4400 characters) but the article gets truncated to about 4050
  characters.  Is there some sort of limitation on PHP variables that is
  causing this?

 Are you using form method=getor form method=post ?

 I'm not certain about the details but GET is not useful for handeling
large
 data, while POST has a default setting of max 2MB pr. request.

 -Jørg







-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]