Php Post

aalpie

New Member
Messages
3
Reaction score
0
Points
0
I use a form to post very many variables to a php file.
The total length of the post header send by the browser is about 4320 characters. I somehow dont recieve all the data I send. Is there a maximum amount of charcters I can send? can I change that?
I hope someone can help me...
 

aalpie

New Member
Messages
3
Reaction score
0
Points
0
first of all thnx for the reply...

I tried to use
var_dump($_POST);

I can see that not all the variables are there.
I also used a program called httpanalyser to have a look at the header my browser send and my browser sends all variables.

How can I make sure that I receive all the variables. Do i have to upload my own php.ini?(read something about this but don't know for sure what it is).
Edit:
I found the solution:

I made a new file php.ini in my root directory containing the following:

--------------------------
register_globals = On
register_argc_argv = On
memory_limit = 10M
track_errors = On
upload_max_filesize = 10M
--------------------------

It now receives all variables
 
Last edited:

naim4u

New Member
Messages
51
Reaction score
0
Points
0
I use a form to post very many variables to a php file.
The total length of the post header send by the browser is about 4320 characters. I somehow dont recieve all the data I send. Is there a maximum amount of charcters I can send? can I change that?
I hope someone can help me...

try entering the script mannually... or there may be error in : fwrite($pfile, "\r\n$filename:$nav");

byee
 
Top