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?
Asked
Active
Viewed 64 times
0
-
Can you show us your code? It's hard to find any errors you've made when we can't see what you've tried. – Hecksa Mar 04 '14 at 13:37
-
Please show us the relevant code. – Markus Malkusch Mar 04 '14 at 13:37
-
http://stackoverflow.com/a/2364875/1501051 there is limit of PHP POST – عثمان غني Mar 04 '14 at 13:38
-
@Echo OP's talking about 15k characters. that's something less than 1 MB. I doubt there's a limit hit. – Markus Malkusch Mar 04 '14 at 13:40
-
thank, it 's html code, i copy all html code of a site – user3379240 Mar 05 '14 at 04:55
1 Answers
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
-