I am not very experienced in web programming and am attempting to run a script which updates my database.
            <script>
            function myFunction() {
                var texts = document.getElementById("content").textContent;
                alert(texts)
                <?php
                    include_once 'accounts/config.php';
                    $text = ...;
                    $tbl_name='enemies'; // Table name 
                    $query = "UPDATE enemies SET text=('$text') WHERE id=1";
                    $result = mysql_query($query) or die(mysql_error());
                ?>
            }
            </script>
I have no idea what to put in the $text section as shown with $text = ...; in order to get the variable texts from above.
EDIT
I have updated my code but the function does not seem to be accessing the PHP file. I am using a button to call the function and I have also tested it so i know the function is being called. My file is called update.php and is in the same directory as this file.
            <button onclick="myFunction()">Click This</button>
        <script>
        function myFunction() {
            var texts = document.getElementById("content").textContent;
            $.ajax({
                url: "update.php",
                type: "POST",
                data: {texts:texts},
                success: function(response){
                }
            });
        }
        </script>
 
     
     
     
    