Is it possible to change the name of the data parameters sent with AJAX dynamically? For example:
let ParamName = `Post_${incremented_value}`;
$.post("index.php" { ParamName : "someValue" });
When viewing the request params the name is still ParamName.