I have following table.
You are adding the $_POST array as the first element to $myarray. If you wish to reference it, just do:
$_POST
$myarray
$myarray = $_POST;
However, this is probably not necessary, as you can just call it via $_POST in your script.