AJAX FormData POST not working: Payload not delivered to PHP page

AJAX POST Payload doesnt deliver to PHP Page

Im trying to send a form when the button “agregar-carrito” gets clicked, creating the form structure inside the .js, and sending it in directed to a .php page named “carrito.php” with POST as REQUEST_METHOD, but the .php page doesnt seem to get the payload from the AJAX. From the page where the data is getting delivered seems to be delivering the data just fine, the payload is sent with the following General Headers data:

Request URL: http://localhost/HC/carrito.php
Request Method: POST
Status Code: 200 OK
Remote Address: [::1]:80
Referrer Policy: strict-origin-when-cross-origin

but on the other end, carrito.php doesnt seem to get sent anything. Without the echos handling the warnings, it results with the following error:

**PHP Warning:  Undefined array key "REQUEST_METHOD" in D:Program FilesxampphtdocsHCcarrito.php on line 3**

script.js

$(document).ready(function() {
  // Manejar el evento clic del botón "Agregar al carrito"
  $('#agregar-carrito').on('click', function(e) {
    // Obtener los datos del producto
    var cantidad = $('#cantidad').val();
    var nombreProducto = $('#nombre-producto').text();
    var idProducto = $('html').attr('id');
    var precioUnitarioTexto = $('#precio-unitario').text();
    precioUnitarioTexto = precioUnitarioTexto.replace(' MXN', '');
    precioUnitarioTexto = precioUnitarioTexto.replace('Precio: $', '');
    var precioUnitario = parseFloat(precioUnitarioTexto);
    var imagenProducto = $('#imagen-producto').attr('src');

    // Calcular el precio total
    var precioTotal = cantidad * precioUnitario;

    // Crear un objeto FormData para enviar los datos del producto (incluyendo la imagen)
    var formData = new FormData();
    formData.append('cantidad', cantidad);
    formData.append('nombre', nombreProducto);
    formData.append('id', idProducto);
    formData.append('imagen', imagenProducto);
    formData.append('precioUnitario', precioUnitario);
    formData.append('precioTotal', precioTotal);

    // Enviar los datos del producto al archivo carrito.php utilizando AJAX
    $.ajax({
      url: 'carrito.php',
      method: 'POST',
      data: formData,
      processData: false,
      contentType: false,
      success: function(response) {
        // Manejar la respuesta del servidor (si es necesario)
        console.log(response);
      },
      error: function(xhr, status, error) {
        // Manejar errores de la solicitud AJAX (si es necesario)
        console.error(error);
      }
    });
  });
});

carrito.php

<?php

if ($_SERVER["REQUEST_METHOD"] == 'POST') {
    $cantidad = $_POST['cantidad'];
    $nombre = $_POST['nombre'];
    $id = $_POST['id'];
    $imagen = $_POST['imagen'];
    $precioUnitario = $_POST['precioUnitario'];
    $precioTotal = $_POST['precioTotal'];

    // Realiza cualquier operación adicional con los datos recibidos

    // Ejemplo: Imprime los datos recibidos
    echo "Cantidad: $cantidad, Nombre: $nombre, ID: $id, Imagen: $imagen, Precio Unitario: $precioUnitario, Precio Total: $precioTotal";
} else {
    echo "Método de solicitud incorrecto.";
}
?>