The code should work the following way: Press a button -> row gets deleted from database.
I tried to follow and copy answers from other questions but with no working solution.
The jquery code:
$(document).on('click', ".menuRemove", function(event) {
  var del_h3name2 = $(this).parent().parent().prev().text();
  $.ajax({
    type:'POST',
    url:'deleteaccordion2.php',
    data:{'del_h3name2':del_h3name2},
    success: function(data){
      if (data=="YES") {
        alert("YES")
      } else {
        alert("can't delete the row")
      }
    }
  });
}
and php code (deleteaccordion2.php):
<?php
  require 'database.php';
  if ( isset($_SESSION['user_id']) ) {
    $id = $_SESSION['user_id'];
    $accordion = $_POST['del_h3name2'];
    echo '$accordion';
    $delete = "DELETE FROM useraccordion WHERE id='$id', h3= '$accordion' ";
    $result = mysqli_query($delete);
    if ($result) {
      echo "YES";
    } else {
      echo "NO";
    }
  }
?>
 
     
    