I am developing an application in php, it receives a POST with information that I must process. I am in my development environment but I cannot test the app, it always returns empty.
in this way I capture the values received in the php file
$nombre             = $_POST['nombre'];
$razon_social       = $_POST['razon_social'];
$apellido_paterno   = $_POST['apellido_paterno'];
$apellido_materno   = $_POST['apellido_materno'];
$rut                = $_POST['rut'];
$email              = $_POST['email'];
$telefono           = $_POST['telefono'];
$fecha_nacimiento   = $_POST['fecha_nacimiento'];
$comuna             = $_POST['comuna'];
$ciudad             = $_POST['ciudad'];
I use thunder from visual studio code to perform the tests, as follows
and when i try this to see de data
the response is only ------------ (the separators between echoes)
what im doing wrong ?


 
    