I know this question was already answered one million times but I'm becoming desperate with this code.
I have two files php files and I want to send a variable from a part written in JS to the other PHP file. So here's the code:
carga_datos.php
<script>
    function MyAlert() {
            var radio1 = $("input[name='inputTipoActividad']:checked").val();
            $.ajax({
                url : 'post.php',
                type : "POST",
                data: {'radio1' : radio1},
                dataType:'json',
                success : function(data) {
                    alert(data);
                },
            });
        }   
</script>
I'm calling to MyAlert() in a radio button form
post.php
<?php 
    $radio1 = $_POST['radio1'];
    echo $radio1;
?>
And I call post.php into carga_datos.php like this:
And this is the error I'm retrieving:
Notice: > Undefined index: radio1 in C:\xampp\htdocs\gis\post.php on line 2
 
     
    