i have a huge value. i need to pass that huge value to one page to another page using form.
<form name="ss" method="post" enctype="multipart/form-data">
<input type="text" name="huge_value" value="<?php echo $huge_value;?>" />
<input type="submit" name="submit" value="submit" />
</form>
The Huge value is canvas base64 encoded
image. I need to convert this image and Download that image. so only i pass that value to another file.
My script working well in localhost. when i upload the file into server the huge post value take minimum 8 min to 10 min time for conversion and download.
My huge data example is given below
$mainarrattt = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAACvAAAArwCAYAAAB4iu5YAA..................'
I have also increase POST_MAX_SIZE in phpini. but same issue.
How can reduce POST loading time in server. Please help me.
Updated
I have also increased memory_limit
Please ask me how to send very large value using post