I tried all the stackoverflow posts about this, I spend two days and still no success , I am trying to pass a JavaScript variable to a PHP variable, I tried this for example and still not succeed, it does not print noting on the screen, here is a full code:
here  cc.html:
<!DOCTYPE html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
    </head>
    <body>
        <script>
            $(document).ready(function(){
                //treehouse code
                var $my_variable = "something";
                $.ajax({
                    url: 'cc.php',
                    data: {x: $my_variable},
                    type: 'POST'
                });
            });
        </script>
    </body>
</html>
and here cc.php:
<?php
if(isset($_POST['x'])){
    echo $_POST['x'];
}
?>
What should I do?
 
     
    