What you can do is pass like this (I’ll show you the HTML input to understand)
Since each point has an id you can do so:
you create a Hidden field:
<input type="hidden" name="id[]" value="Aqui colocas o teu id"/>
<input type="text" name="post[ID Aqui tm]" />
in php like this:
$ArrayComId = $_POST['id[]'];
$ArrayComPost = $_POST['Post[]'];
then just do a foreach and take the post of each ID
foreach($arraycomid as $key => $value)
{
  echo $arraycompost[$value];
}
It is possible to have some error but the logic is +/- this
							
							
						 
that question makes no sense
– Felipe Duarte
Yes, please make an effort to help me.
– Hanz
what do you mean search for data within a post? exemplifies this
– user60252
In ajax when you are going to post, have the search data from another page by the right js? in case it is the id and the point. But on the page, each input with name="dot" has an id, e.g.: name="point1", name="point2" I wanted it to be like this in the post point in ajax, so I could look up what kind of point it is.
– Hanz
I’m sorry but your example doesn’t make sense, rephrase your question with data Exmplos you want to send and take...
– Simão Lemos