I'm sending to PHP using $_POST['find']
inside PHP
I generate echo json_encode($records);
table
My question is how I can show the result : "records" in my tableview cells
You'll need to parse the JSON response and store it in an array.
For example, using AlamoFire, you can parse the response with SwiftyJSON. Create an array of your records, and use that when getting data for a tableview cell.