0

i have a form and need to display POST variable from form, about 15 000 character, but i cannot echo this POST variable. it is blank how can i do send POST data as above?

1 Answers1

0

try to alter your .htaccess file

php_value post_max_size 1M

1MB should be plenty to handle 15k Bytes ...

osh
  • 41
  • 6
  • By default [`post_max_size`](http://us1.php.net/manual/en/ini.core.php#ini.post-max-size) is set to `8M`. `15k bytes` is only `0.0143051 megabytes`. This is likely not the problem. – phpisuber01 Mar 04 '14 at 14:03
  • thank, it 's html code, i copy all html code of a site – user3379240 Mar 05 '14 at 04:58