Having 3 different forms on the page is going to cause issues in itself. When you submit 1 form, it isn't going to grab all the information from the other 2.
I am not sure why you would need to have 3 different forms on the page, but if it is a necessity, and you want to capture all the information, you would have to submit using some javascript. All 3 forms would have to call a javascript when submitted that would compile the information and submit it to the next page, otherwise you will lose data.
If you need to explode it, you can use the something like what Sundeep mentioned, if you would want the information to come across already in an array you could just name your inputs accordingly:
<textarea name="info[text_area1]">Default value here</textarea>
<textarea name="info[text_area2]">Default value here</textarea>
And so on, then when submitted to the next page $_POST/$_GET['info'] would be the array of all your inputs, $_POST['info']['text_area1'] etc...
I would however say combine the forms if at all possible, it would make submitting much easier.